OCCNurbsCurve
- class compas_occ.geometry.OCCNurbsCurve(*args, **kwargs)[source]
Bases:
compas.geometry.curves.nurbs.NurbsCurve
Class representing a NURBS curve based on the BSplineCurve of the OCC geometry kernel.
- Parameters
name (str, optional) – The name of the curve.
Examples
Curve from points…
from compas.geometry import Point from compas_occ.geometry import OCCNurbsCurve points = [Point(0, 0, 0), Point(3, 6, 0), Point(6, -3, 3), Point(10, 0, 0)] curve = OCCNurbsCurve.from_points(points)
Curve from parameters…
from compas.geometry import Point from compas_occ.geometry import OCCNurbsCurve points = [Point(0, 0, 0), Point(3, 6, 0), Point(6, -3, 3), Point(10, 0, 0)] curve = OCCNurbsCurve.from_parameters( points=points, weights=[1.0, 1.0, 1.0, 1.0], knots=[0.0, 1.0], multiplicities=[4, 4], degree=3 )
Methods
Compute the axis aligned bounding box of the curve.
Computes the curve parameters where the curve is the closest to another given curve.
Compute the closest point on the curve to a given point.
Computes the points on curves where the curve is the closest to another given curve.
Compute the curvature at a point on the curve.
Divide the curve into a specific number of equal length segments.
Divide the curve into segments of specified length.
Compute the local frame at a point on the curve.
Construct a NURBS curve from an arc.
Construct a NURBS curve from a circle.
Construct a NURBS curve from an existing OCC TopoDS_Edge.
Construct a NURBS curve from an ellipse.
Construct a NURBS curve by interpolating a set of points.
Construct a NURBS curve from a line.
Construct a NURBS curve from an existing OCC BSplineCurve.
Construct a NURBS curve from explicit curve parameters.
Construct a NURBS curve from control points.
Load a NURBS curve from an STP file.
Compute the length of the curve.
Compute the oriented bounding box of the curve.
Compute a point on the curve.
Reverse the parametrisation of the curve.
Modifies this curve by segmenting it between the parameters u and v.
Returns a copy of this curve by segmenting it between the parameters u and v.
Compute the tangent vector at a point on the curve.
Write the curve geometry to a STP file.
Transform this curve.
Inherited Methods
Make an independent copy of the current curve.
Construct a NURBS curve from its data representation.
Construct an object from serialized data contained in a JSON file.
Construct an object from serialized data contained in a JSON string.
Compute the locus of all points on the curve.
Compute evenly spaced parameters over the curve domain.
Convert an object to its native data representation.
Serialize the data representation of an object to a JSON file.
Serialize the data representation of an object to a JSON string.
Transform a copy of the curve.
Validate the object's data against its data schema (self.DATASCHEMA).
Validate the object's data against its json schema (self.JSONSCHEMA).
Compute point locations corresponding to evenly spaced parameters over the curve domain.