NurbsCurve

Overview

NurbsCurve is a class in Aspose.3D FOSS for Python. Inherits from: Curve.

This class declares 9 methods for NurbsCurve objects in Python programs. Available methods include: __init__, evaluate, evaluate_at, find_property, get_bounding_box, get_entity_renderer_key, get_property, remove_property, set_property. All public members are accessible to any Python application after installing the Aspose.3D FOSS for Python package. Properties: color, control_points, curve_type, degree, dimension, excluded, and 9 more.

Properties

NameTypeAccessDescription
control_points``ReadGets the control points.
multiplicity``ReadGets the multiplicity.
orderintRead/WriteGets or sets the order.
degreeintRead/WriteGets or sets the degree.
dimension'CurveDimension'Read/WriteGets or sets the dimension.
curve_type'NurbsType'Read/WriteGets or sets the curve type.
knot_vectors``ReadGets the knot vectors.
rationalboolRead/WriteGets or sets the rational.
color'Vector3'Read/WriteGets or sets the color.
parent_nodesList['Node']ReadGets the parent nodes.
parent_nodeOptional['Node']Read/WriteGets or sets the parent node.
excludedboolRead/WriteGets or sets the excluded.
scene``Read/WriteGets or sets the scene.
namestrRead/WriteGets or sets the name.
propertiesPropertyCollectionReadGets the properties.

Methods

SignatureDescription
__init__(name: str)Calls init(name) on this NurbsCurve instance.
evaluate(steps: int)Not implemented in the FOSS edition — throws at runtime. Calls evaluate(steps) on this NurbsCurve instance.
evaluate_at(u: float)Not implemented in the FOSS edition — throws at runtime. Calls evaluate_at(u) on this NurbsCurve instance.
get_bounding_box()BoundingBoxNot implemented in the FOSS edition — throws at runtime. Returns the bounding box.
get_entity_renderer_key()Not implemented in the FOSS edition — throws at runtime. Returns the entity renderer key.
find_property(property_name: str)Calls find_property(property_name) on this NurbsCurve instance.
get_property(property: str)Calls get_property(property) on this NurbsCurve instance.
set_property(property: str, value)Sets the property value.
remove_property(property)Calls remove_property(property) on this NurbsCurve instance.

See Also