Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/labs/lab14/index.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ Fill in the `Main` function in the `PatternGenerationDemo` project to create at

### Example results
`populate`
![populate](Data/Image1.png)
![populate](data/Image1.png)
`enstripen`
![enstripen](Data/Image2.png)
![enstripen](data/Image2.png)

### Example solution

Expand Down
4 changes: 2 additions & 2 deletions content/labs/lab14/index.pl.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ Uzupełnij funkcję `Main` w projekcie `PatternGenerationDemo` aby tworzyło si

### Przykładowy rezultat
`populate`
![populate](Data/Image1.png)
![populate](data/Image1.png)
`enstripen`
![enstripen](Data/Image2.png)
![enstripen](data/Image2.png)

### Przykładowe rozwiązanie

Expand Down
Binary file added static/labs/lab14/data/Image1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/labs/lab14/data/Image2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ typedef struct stripe_settings
LIBRARY pattern_t* pattern_init(int width, int height);
LIBRARY void pattern_populate(pattern_t* pattern, point_t* points,
int point_count);
LIBRARY void pattern_enstripen(pattern_t* pattern, stripe_settings_t settings);
LIBRARY void pattern_enstripen(pattern_t* pattern, stripe_settings_t* settings);
LIBRARY void pattern_destroy(pattern_t* pattern);
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ typedef struct stripe_settings
LIBRARY pattern_t* pattern_init(int width, int height);
LIBRARY void pattern_populate(pattern_t* pattern, point_t* points,
int point_count);
LIBRARY void pattern_enstripen(pattern_t* pattern, stripe_settings_t settings);
LIBRARY void pattern_enstripen(pattern_t* pattern, stripe_settings_t* settings);
LIBRARY void pattern_destroy(pattern_t* pattern);