Skip to content

Commit

Permalink
Making newton_refine_intersect accept num_nodes.
Browse files Browse the repository at this point in the history
  • Loading branch information
dhermes committed Sep 29, 2017
1 parent 06501c5 commit 80ec491
Show file tree
Hide file tree
Showing 6 changed files with 282 additions and 304 deletions.
4 changes: 2 additions & 2 deletions src/bezier/_curve_intersection.pxd
Expand Up @@ -28,8 +28,8 @@ cdef extern from "bezier/curve_intersection.h":
double *start0, double *end0, double *start1, double *end1,
double *s, double *t, bool_t *success)
void newton_refine_intersect(
double *s, int *degree1, double *nodes1,
double *t, int *degree2, double *nodes2,
double *s, int *num_nodes1, double *nodes1,
double *t, int *num_nodes2, double *nodes2,
double *new_s, double *new_t)
void bbox_intersect(
int *num_nodes1, double *nodes1,
Expand Down

0 comments on commit 80ec491

Please sign in to comment.