Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
isc_physics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
orestis.malaspin
isc_physics
Commits
93def587
Verified
Commit
93def587
authored
3 years ago
by
orestis.malaspin
Browse files
Options
Downloads
Patches
Plain Diff
updated to take into account shift and renorm
parent
0bd042e5
No related branches found
No related tags found
No related merge requests found
Pipeline
#14682
passed
3 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
practical_work/tp_vec2/main.c
+14
-20
14 additions, 20 deletions
practical_work/tp_vec2/main.c
with
14 additions
and
20 deletions
practical_work/tp_vec2/main.c
+
14
−
20
View file @
93def587
...
...
@@ -7,34 +7,30 @@
#define SCREEN_WIDTH 1280
#define SCREEN_HEIGHT 720
double
rand_dbl
()
{
return
((
double
)
rand
())
/
RAND_MAX
;
double
rand_dbl
()
{
return
2
.
0
*
((
double
)
rand
())
/
RAND_MAX
-
0
.
5
;
}
int
main
()
{
int
main
()
{
srand
(
time
(
NULL
));
struct
gfx_context_t
*
ctxt
=
gfx_create
(
"Vec2 demo"
,
SCREEN_WIDTH
,
SCREEN_HEIGHT
);
if
(
!
ctxt
)
{
if
(
!
ctxt
)
{
fprintf
(
stderr
,
"Graphics initialization failed!
\n
"
);
return
EXIT_FAILURE
;
}
vec2
center
=
vec2_create
(
0
.
5
,
0
.
5
);
vec2
center
=
vec2_create
(
0
.
0
,
0
.
0
);
double
radius
=
0
.
5
;
for
(
int
i
=
0
;
i
<
250000
;
i
++
)
{
for
(
int
i
=
0
;
i
<
250000
;
i
++
)
{
vec2
r
=
vec2_create
(
rand_dbl
(),
rand_dbl
());
//Draw pixel if in circle
if
(
vec2_norm
(
vec2_sub
(
r
,
center
))
<
radius
)
{
coordinates
pixel
=
vec2_to_coordinates
(
r
,
SCREEN_WIDTH
,
SCREEN_HEIGHT
);
//Random color (not black)
//
Draw pixel if in circle
if
(
vec2_norm
(
vec2_sub
(
r
,
center
))
<
radius
)
{
coordinates
pixel
=
vec2_to_coordinates
(
r
,
SCREEN_WIDTH
,
SCREEN_HEIGHT
);
//
Random color (not black)
uint32_t
color
=
rand
()
%
0xFFFFFF
;
gfx_putpixel
(
ctxt
,
pixel
.
column
,
pixel
.
row
,
color
);
...
...
@@ -42,13 +38,11 @@ int main()
}
gfx_present
(
ctxt
);
while
(
true
)
{
if
(
gfx_keypressed
()
==
SDLK_ESCAPE
)
{
while
(
true
)
{
if
(
gfx_keypressed
()
==
SDLK_ESCAPE
)
{
break
;
}
}
gfx_destroy
(
ctxt
);
return
EXIT_SUCCESS
;
}
\ No newline at end of file
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment