forked from blender/blender
me-main #1
@ -160,14 +160,13 @@ static void pf_ear_tip_cut(PolyFill *pf, PolyIndex *pi_ear_tip);
|
|||||||
|
|
||||||
BLI_INLINE eSign signum_enum(float a)
|
BLI_INLINE eSign signum_enum(float a)
|
||||||
{
|
{
|
||||||
if (UNLIKELY(a == 0.0f)) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
if (a > 0.0f) {
|
if (a > 0.0f) {
|
||||||
return 1;
|
return CONVEX;
|
||||||
}
|
}
|
||||||
|
if (UNLIKELY(a == 0.0f)) {
|
||||||
return -1;
|
return TANGENTIAL;
|
||||||
|
}
|
||||||
|
return CONCAVE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user