Navigation
Navigate Navigate Navigate Navigate Navigate Navigate Navigate Navigate

IfcBezierCurve

Definition from ISO/CD 10303-42:1992: This is a special type of curve which can be represented as a type of B-spline curve in which the knots are evenly spaced and have high multiplicities. Suitable default values for the knots and knot multiplicities are derived in this case.

A B-spline curve is a piecewise Bezier curve if it is quasi-uniform except that the interior knots have multiplicity degree rather than having multiplicity one. In this subtype the knot spacing is 1.0, starting at 0.0. A piecewise Bezier curve which has only two knots, 0.0 and 1.0, each of multiplicity (degree+1), is a simple Bezier curve.

NOTE: A simple Bezier curve can be defined as a B-spline curve with knots by the following data:

  degree (d)
  upper index on control points (equal to d)
  control points (d + 1 cartesian points)
  knot type (equal to quasi-uniform knots)

No other data are needed, except for a rational Bezier curve. In this case the weights data ((d + 1) REALs) shall be given.

NOTE: It should be noted that every piecewise Bezier curve has an equivalent representation as a B-spline curve but not every B-spline curve can be represented as a Bezier curve.

To define a piecewise Bezier curve as a B-spline:

EXAMPLE:

For the piecewise Bezier case, if d is the degree, m is the number of knots with multiplicity d, and N is the total number of knots for the spline, then

  (d+2+k)   = N
     = (d+1)+md+(d+1)
  thus m   = (k-d)/d

So the knot sequence is (0; 1; ...;m; (m+ 1)) with multiplicities (d + 1; d; : : :; d; d+ 1).

NOTE: Corresponding STEP entity: bezier_curve. Please refer to ISO/IS 10303-42:1994, p. 51 for the final definition of the formal standard. Due to the constraints in the IFC architecture to not include ANDOR subtype constraints, an explicit subtype IfcRationalBezierCurve is added which holds the same information as the complex entity b_spline_curve AND bezier_curve.

HISTORY: New entity in Release IFC2x Edition 2.

EXPRESS specification:

ENTITY IfcBezierCurve
SUPERTYPE OF (IfcRationalBezierCurve)
SUBTYPE OF ( IfcBSplineCurve);
END_ENTITY;

Inheritance graph

ENTITY IfcBezierCurve;
ENTITY IfcRepresentationItem;
INVERSE
LayerAssignments  :  SET OF IfcPresentationLayerAssignment FOR AssignedItems;
StyledByItem  :  SET [0:1] OF IfcStyledItem FOR Item;
ENTITY IfcGeometricRepresentationItem;
ENTITY IfcCurve;
DERIVE
Dim  :  IfcDimensionCount :=  IfcCurveDim(SELF);
ENTITY IfcBoundedCurve;
ENTITY IfcBSplineCurve;
Degree  :  INTEGER;
ControlPointsList  :  LIST [2:?] OF IfcCartesianPoint;
CurveForm  :  IfcBSplineCurveForm;
ClosedCurve  :  LOGICAL;
SelfIntersect  :  LOGICAL;
DERIVE
ControlPoints  :  ARRAY [0:255] OF IfcCartesianPoint :=  IfcListToArray(ControlPointsList,0,UpperIndexOnControlPoints);
UpperIndexOnControlPoints  :  INTEGER :=  (SIZEOF(ControlPointsList) - 1);
ENTITY IfcBezierCurve;
END_ENTITY;