Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/curve.c
| Context not available. | |||||
| #include "DEG_depsgraph.h" | #include "DEG_depsgraph.h" | ||||
| #include "CLG_log.h" | |||||
| /* globals */ | /* globals */ | ||||
| /* local */ | /* local */ | ||||
| static CLG_LogRef LOG = { "bke.curve" }; | |||||
| static int cu_isectLL(const float v1[3], const float v2[3], const float v3[3], const float v4[3], | static int cu_isectLL(const float v1[3], const float v2[3], const float v3[3], const float v4[3], | ||||
| short cox, short coy, | short cox, short coy, | ||||
| float *lambda, float *mu, float vec[3]); | float *lambda, float *mu, float vec[3]); | ||||
| Context not available. | |||||
| } | } | ||||
| } | } | ||||
| else { | else { | ||||
| printf("bez nurb curve order is not 3 or 4, should never happen\n"); | CLOG_ERROR(&LOG, "bez nurb curve order is not 3 or 4, should never happen"); | ||||
| } | } | ||||
| break; | break; | ||||
| default: | default: | ||||
| Context not available. | |||||