Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rudimentary Bezier Curves Implementation. #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
44 changes: 43 additions & 1 deletion olive.c
Original file line number Diff line number Diff line change
Expand Up @@ -934,11 +934,53 @@ OLIVECDEF void olivec_sprite_copy_bilinear(Olivec_Canvas oc, int x, int y, int w
}
}


OLIVECDEF double OLIVEC_BINOMIAL_COEFFS(int n, int i)
{
double result = 1;
for(int j = 1; j <= i; j++)
{
result *= (n-i+j) /(double)j;
}
return result;
}

OLIVECDEF void olivec_bezier(Olivec_Canvas oc, int degree, uint32_t color,
int x1, int y1, int cx1, int cy1,
int cx2, int cy2, int x2, int y2)
{
// TODO: Make the degree work for other than cubic.
// TODO: test case for bezier curves

int pointsx[4] = {x1, cx1, cx2, x2};
int pointsy[4] = {y1, cy1, cy2, y2};
double px = 0, py = 0;
// TODO: find a better iteration step size.
double istep = 0.001;
double scale_factor = istep;
double x, y;

while(scale_factor < 1)
{
x = 0, y = 0;
for(int i = 0; i <= degree; i++)
{
double b = OLIVEC_BINOMIAL_COEFFS(degree, i) * pow(1-scale_factor, degree - i) * pow(scale_factor, i);
x += b*(double) pointsx[i];
y += b*(double) pointsy[i];
}

OLIVEC_PIXEL(oc,(int) x,(int) y) = color;
px = x; py = y;

scale_factor += istep;
}
}

#endif // OLIVEC_IMPLEMENTATION

// TODO: Benchmarking
// TODO: SIMD implementations
// TODO: bezier curves
// TODO: olivec_ring
// TODO: fuzzer
// TODO: Stencil