EggCurve¶
from panda3d.egg import EggCurve
-
class
EggCurve
¶ Bases:
EggPrimitive
A parametric curve of some kind. See
EggNurbsCurve
.Inheritance diagram
-
enum
CurveType
¶ -
enumerator
CT_none
= 0¶
-
enumerator
CT_xyz
= 1¶
-
enumerator
CT_hpr
= 2¶
-
enumerator
CT_t
= 3¶
-
enumerator
-
static
getClassType
() → panda3d.core.TypeHandle¶
-
getCurveType
() → CurveType¶ Returns the indicated type of the curve.
-
getSubdiv
() → int¶ Returns the requested number of subdivisions, or 0 if no particular subdivisions have been requested.
-
setCurveType
(type: CurveType) → None¶ Sets the type of the curve. This is primarily used as a hint to any code that may need to deal with this curve.
-
enum