Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
phys_tp_elec
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
boris.stefanov
phys_tp_elec
Commits
a26003e4
Commit
a26003e4
authored
3 years ago
by
Boris Stefanovic
Browse files
Options
Downloads
Patches
Plain Diff
ADD: draw_everything(...)
parent
14760f3d
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/field.c
+26
-7
26 additions, 7 deletions
src/field.c
src/field.h
+9
-0
9 additions, 0 deletions
src/field.h
src/main.c
+6
-6
6 additions, 6 deletions
src/main.c
with
41 additions
and
13 deletions
src/field.c
+
26
−
7
View file @
a26003e4
#include
<math.h>
#include
<stdbool.h>
#include
<stdbool.h>
#include
<stdlib.h>
#include
<stdlib.h>
#include
"draw.h"
#include
"field.h"
#include
"field.h"
#include
"../utils/utils.h"
#define SIGN_SIZE 10
#define SIGN_SIZE 10
#define CHARGE_R 25
#define CHARGE_R 25
// Compute E*qP/norm(qP)
// Compute E*qP/norm(qP)
// Return false if norm(qP) < eps
// Return false if norm(qP) < eps
/// qP = vectoriel(P-q)
/// qP = vectoriel(P-q)
...
@@ -38,22 +39,25 @@ bool compute_total_normalized_e(charge_t *charges, int num_charges, vec2 p, doub
...
@@ -38,22 +39,25 @@ bool compute_total_normalized_e(charge_t *charges, int num_charges, vec2 p, doub
// starting from pos0.
// starting from pos0.
// Returns false if pos0 is not a valid position
// Returns false if pos0 is not a valid position
// (for example if pos0 is too close to a charge).
// (for example if pos0 is too close to a charge).
static
bool
draw_field_line
(
struct
gfx_context_t
*
ctxt
,
charge_t
*
charges
,
int
num_charges
,
double
dx
,
vec2
pos0
,
double
x0
,
double
x1
,
double
y0
,
double
y1
)
{
static
bool
draw_field_line
(
struct
gfx_context_t
*
ctxt
,
charge_t
*
charges
,
int
num_charges
,
double
dx
,
vec2
pos0
,
double
x0
,
double
x1
,
double
y0
,
double
y1
)
{
return
EXIT_SUCCESS
;
return
EXIT_SUCCESS
;
}
}
// Draw all the charges
// Draw all the charges
// A circle with minus sign for negative charges
// A circle with minus sign for negative charges
// A circle with a plus sign for positive charges
// A circle with a plus sign for positive charges
static
void
draw_charges
(
struct
gfx_context_t
*
context
,
charge_t
*
charges
,
int
num_charges
,
double
x0
,
double
x1
,
double
y0
,
double
y1
)
{
static
void
for
(
int
i
=
0
;
i
<
num_charges
;
i
++
)
draw_charges
(
struct
gfx_context_t
*
context
,
charge_t
*
charges
,
int
num_charges
,
double
x0
,
double
x1
,
double
y0
,
{
double
y1
)
{
for
(
int
i
=
0
;
i
<
num_charges
;
i
++
)
{
coordinates_t
charge_center
=
position_to_coordinates
(
CHARGE_R
,
CHARGE_R
,
x0
,
x1
,
y0
,
y1
,
charges
[
i
].
pos
);
coordinates_t
charge_center
=
position_to_coordinates
(
CHARGE_R
,
CHARGE_R
,
x0
,
x1
,
y0
,
y1
,
charges
[
i
].
pos
);
gfx_draw_circle
(
context
,
charge_center
,
CHARGE_R
,
COLOR_WHITE
);
gfx_draw_circle
(
context
,
charge_center
,
CHARGE_R
,
COLOR_WHITE
);
coordinates_t
sign_dst
;
coordinates_t
sign_dst
;
uint32_t
sign_color
=
COLOR_RED
;
uint32_t
sign_color
=
COLOR_RED
;
if
(
charges
[
i
].
q
>
0
){
if
(
charges
[
i
].
q
>
0
)
{
sign_color
=
COLOR_BLUE
;
sign_color
=
COLOR_BLUE
;
sign_dst
.
row
=
charge_center
.
row
+
SIGN_SIZE
;
sign_dst
.
row
=
charge_center
.
row
+
SIGN_SIZE
;
gfx_draw_line
(
context
,
charge_center
,
sign_dst
,
sign_color
);
gfx_draw_line
(
context
,
charge_center
,
sign_dst
,
sign_color
);
...
@@ -67,3 +71,18 @@ static void draw_charges(struct gfx_context_t *context, charge_t *charges, int n
...
@@ -67,3 +71,18 @@ static void draw_charges(struct gfx_context_t *context, charge_t *charges, int n
gfx_draw_line
(
context
,
charge_center
,
sign_dst
,
sign_color
);
gfx_draw_line
(
context
,
charge_center
,
sign_dst
,
sign_color
);
}
}
}
}
void
draw_everything
(
struct
gfx_context_t
*
ctxt
,
charge_t
*
charges
,
int
num_charges
,
int
num_lines
,
double
dx
,
double
x0
,
double
x1
,
double
y0
,
double
y1
)
{
draw_charges
(
ctxt
,
charges
,
num_charges
,
x0
,
x1
,
y0
,
y1
);
for
(
int
i
=
0
;
i
<
num_lines
;
++
i
)
{
vec2
pos0
=
vec2_normalize
(
vec2_create
(
rand
(),
rand
()));
draw_field_line
(
ctxt
,
charges
,
num_charges
,
dx
,
pos0
,
x0
,
x1
,
y0
,
y1
);
}
}
This diff is collapsed.
Click to expand it.
src/field.h
+
9
−
0
View file @
a26003e4
...
@@ -29,4 +29,13 @@ static void
...
@@ -29,4 +29,13 @@ static void
draw_charges
(
struct
gfx_context_t
*
context
,
charge_t
*
charges
,
int
num_charges
,
double
x0
,
double
x1
,
double
y0
,
draw_charges
(
struct
gfx_context_t
*
context
,
charge_t
*
charges
,
int
num_charges
,
double
x0
,
double
x1
,
double
y0
,
double
y1
);
double
y1
);
void
draw_everything
(
struct
gfx_context_t
*
ctxt
,
charge_t
*
charges
,
int
num_charges
,
int
num_lines
,
double
dx
,
double
x0
,
double
x1
,
double
y0
,
double
y1
);
#endif
#endif
This diff is collapsed.
Click to expand it.
src/main.c
+
6
−
6
View file @
a26003e4
#include
<stdlib.h>
#include
<stdlib.h>
#include
<time.h>
#include
<time.h>
#include
"draw.h"
#include
"draw.h"
#include
"field.h"
#include
"../utils/utils.h"
#include
"../utils/utils.h"
#define SIDE_LEN 1000
#define SIDE_LEN 1000
#define WID SIDE_LEN
#define WID SIDE_LEN
#define HEI WID
#define HEI WID
#define NCHARGES 2
#define NCHARGES 2
#define DX 0.0005
#define DX 0.0005
#define NPOINTS 32
#define NLINES 32
int
main
()
{
int
main
()
{
srand
(
time
(
NULL
));
srand
(
time
(
NULL
));
...
@@ -17,11 +21,7 @@ int main() {
...
@@ -17,11 +21,7 @@ int main() {
{.
q
=
0
.
25
,
.
pos
=
vec2_create
(
0
.
75
,
0
.
5
)},
{.
q
=
0
.
25
,
.
pos
=
vec2_create
(
0
.
75
,
0
.
5
)},
};
};
struct
gfx_context_t
*
ctxt
=
gfx_create
(
"elec"
,
WID
,
HEI
);
struct
gfx_context_t
*
ctxt
=
gfx_create
(
"elec"
,
WID
,
HEI
);
draw_charges
(
ctxt
,
charges
,
NCHARGES
,
0
.
0
,
1
.
0
,
0
.
0
,
1
.
0
);
draw_everything
(
ctxt
,
charges
,
NCHARGES
,
NLINES
,
DX
,
0
.
0
,
1
.
0
,
0
.
0
,
1
.
0
);
for
(
int
i
=
0
;
i
<
NPOINTS
;
++
i
)
{
vec2
start
=
vec2_normalize
(
vec2_create
(
rand
(),
rand
()));
draw_field_line
(
ctxt
,
charges
,
NCHARGES
,
DX
,
start
,
0
.
0
,
1
.
0
,
0
.
0
,
1
.
0
);
}
while
(
gfx_keypressed
()
!=
SDLK_ESCAPE
)
gfx_present
(
ctxt
);
while
(
gfx_keypressed
()
!=
SDLK_ESCAPE
)
gfx_present
(
ctxt
);
gfx_destroy
(
ctxt
);
gfx_destroy
(
ctxt
);
return
EXIT_SUCCESS
;
return
EXIT_SUCCESS
;
...
...
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