![]() |
Defines of a path of bezier points.
Public Member Functions | |
bool | equivalent_reverse (OMC::Bezier *other) const |
Identifies if the reversed bezier is equivalent.. More... | |
void | multiply (const QVariant &value) |
Multiply the bezier path with a value. More... | |
void | round (double pointQuantum=1.0/64.0) |
Round the bezier with a point quantum. More... | |
void | clear () |
Clears all the points in the path. The path will now be empty. More... | |
void | trim (uint numpts) |
Trims the number of points in the path to the provided number. More... | |
void | close () |
Appends the starting point to the end point, in order to close the bezier path. More... | |
void | erase (uint fromIdx, uint toIdx) |
Erases the points from the given index, to the given index. More... | |
void | reverse () |
Reverses this bezier path. | |
void | insert_point (double t) |
Inserts a point at t along the path. More... | |
OMC::BezierPath * | truncate (double from_t, double to_t) |
Truncates the bezier path from a given point, to a given point. More... | |
void | straighten () |
Straightens the path into a path formed of line segments. More... | |
OMC::Point2d * | evaluate (double t) const |
Evaluates and provides the point along the path at the parameter t. More... | |
OMC::BezierPath * | split (double t) |
Splits the path at a given point. More... | |
OMC::Bezier * | bezier (uint idx) const |
Gets the bezier at the given index. More... | |
int | bezier_degree (uint idx) const |
Gets the degree of the bezier at the given index. More... | |
void | bezier_set (uint idx, OMC::Bezier *bezier) const |
Replaces the bezier at the given index. More... | |
void | bezier_append (OMC::Bezier *bezier) const |
Appends the bezier to the back of the path. More... | |
void | bezier_append_front (OMC::Bezier *bezier) const |
Appends the bezier to the front of the path. More... | |
OMC::DrawingVectorContour * | operator[] (int idx) const |
Returns the point at the given index on the bezier path. More... | |
bool | contains (OMC::Point2d *) const |
Identifies if the list contains the art layer object. | |
virtual std::vector< OMC::Point2d * > | list () const override |
Converts the dynamic list into a concrete list of drawing vector stroke objects. | |
bool | intersecting () const |
Identifies if the bezier path is self-interesecting. | |
bool | intersecting (OMC::Bezier *bez) const |
Identifies if the bezier path is interesecting with another bezier path. | |
QList< OMC::Point2d * > | intersections () const |
Provides a list of all self-interestions. More... | |
QList< OMC::Point2d * > | intersections (OMC::Bezier *bez) const |
Provides a list of all interestions between the bezier curve provided. More... | |
double | closest_point (OMC::Point2d *) const |
Finds the evaluated value that would provide the nearest point on the path. More... | |
bool | containing (OMC::Point2d *) const |
Identifies if the point is contained within a closed bezier path. More... | |
bool | inside (OMC::BezierPath *) const |
Identifies if the bezier path is entirely within a closed bezier path. More... | |
bool | outside (OMC::BezierPath *) const |
Identifies if the bezier path is entirely outside a closed bezier path. More... | |
Static Public Member Functions | |
static OMC::BezierPath * | create_circle (double centerX, double centerY, double radius, uint segments=4) |
Creates a bezier path containing a circle with the provided parameters. More... | |
static OMC::BezierPath * | create_oval (double centerX, double centerY, double radiusX, double radiusY, uint segments=4) |
Creates a bezier path containing a oval with the provided parameters. More... | |
static OMC::BezierPath * | create_rectangle (double minX, double minY, double maxX, double maxY) |
Creates a bezier path containing a rectangle with the provided parameters. More... | |
static OMC::BezierPath * | create_bezier_fit (QList< OMC::Point2d > points, bool closed=false, bool oneBezier=false) |
Creates all points by fitting the provided points to a bezier, or bezier path. More... | |
Public Attributes | |
bool | empty |
bool | degenerate |
bool | polyline |
uint | points_on_curve |
uint | bezier_count |
OMC::AllocatedRect2d * | bounding_box |
OMC::AllocatedRect2d * | bounding_box_inner |
OMC::Vector2d * | to_tangent |
OMC::Vector2d * | from_tangent |
double | polygon_length |
bool | polygon_clockwise |
OMC::Bezier* OMC::BezierPath::bezier | ( | uint | idx | ) | const |
Gets the bezier at the given index.
void OMC::BezierPath::bezier_append | ( | OMC::Bezier * | bezier | ) | const |
Appends the bezier to the back of the path.
When appending to a bezier path, the points at which the bezier path is appended should match.
void OMC::BezierPath::bezier_append_front | ( | OMC::Bezier * | bezier | ) | const |
Appends the bezier to the front of the path.
When appending to a bezier path, the points at which the bezier path is appended should match.
int OMC::BezierPath::bezier_degree | ( | uint | idx | ) | const |
Gets the degree of the bezier at the given index.
void OMC::BezierPath::bezier_set | ( | uint | idx, |
OMC::Bezier * | bezier | ||
) | const |
Replaces the bezier at the given index.
void OMC::BezierPath::clear | ( | ) |
Clears all the points in the path. The path will now be empty.
void OMC::BezierPath::close | ( | ) |
Appends the starting point to the end point, in order to close the bezier path.
double OMC::BezierPath::closest_point | ( | OMC::Point2d * | ) | const |
Finds the evaluated value that would provide the nearest point on the path.
bool OMC::BezierPath::containing | ( | OMC::Point2d * | ) | const |
Identifies if the point is contained within a closed bezier path.
Using a ray test, identifies if the provided point is interior to the bezier path if the path is closed and defines an enclosed region.
|
static |
Creates all points by fitting the provided points to a bezier, or bezier path.
|
static |
Creates a bezier path containing a circle with the provided parameters.
|
static |
Creates a bezier path containing a oval with the provided parameters.
|
static |
Creates a bezier path containing a rectangle with the provided parameters.
bool OMC::BezierPath::equivalent_reverse | ( | OMC::Bezier * | other | ) | const |
Identifies if the reversed bezier is equivalent..
void OMC::BezierPath::erase | ( | uint | fromIdx, |
uint | toIdx | ||
) |
Erases the points from the given index, to the given index.
OMC::Point2d* OMC::BezierPath::evaluate | ( | double | t | ) | const |
Evaluates and provides the point along the path at the parameter t.
void OMC::BezierPath::insert_point | ( | double | t | ) |
Inserts a point at t along the path.
Inserts a point on the curve at the given parameter t and round it, which must be in the interval [0, GetNumPoints]. If the given parameter t is an integer, then the curve is not modified and the method returns false. Otherwise, the appropriate bezier curve is split in two pieces and the method returns true. In such a case, the parametrization of the curve is modified, invalidating this way any other parametric information about the curve.
bool OMC::BezierPath::inside | ( | OMC::BezierPath * | ) | const |
Identifies if the bezier path is entirely within a closed bezier path.
QList<OMC::Point2d*> OMC::BezierPath::intersections | ( | ) | const |
Provides a list of all self-interestions.
QList<OMC::Point2d*> OMC::BezierPath::intersections | ( | OMC::Bezier * | bez | ) | const |
Provides a list of all interestions between the bezier curve provided.
void OMC::BezierPath::multiply | ( | const QVariant & | value | ) |
Multiply the bezier path with a value.
Multiplies the bezier path in place with a value – the value can be a single number, or a matrix (only 2D components are considered).
OMC::DrawingVectorContour* OMC::BezierPath::operator[] | ( | int | idx | ) | const |
Returns the point at the given index on the bezier path.
bool OMC::BezierPath::outside | ( | OMC::BezierPath * | ) | const |
Identifies if the bezier path is entirely outside a closed bezier path.
void OMC::BezierPath::round | ( | double | pointQuantum = 1.0/64.0 | ) |
Round the bezier with a point quantum.
OMC::BezierPath* OMC::BezierPath::split | ( | double | t | ) |
Splits the path at a given point.
Splits the path at a given point along the path. This path will be the initial portion of the path, from the starting point to the split point. The returned OMC::Bezier* provides the remaining portion of the path, from the split point to the ending point
void OMC::BezierPath::straighten | ( | ) |
Straightens the path into a path formed of line segments.
Transform this bezier path into a path with bezier of degree 1, representing individual line segments.
void OMC::BezierPath::trim | ( | uint | numpts | ) |
Trims the number of points in the path to the provided number.
OMC::BezierPath* OMC::BezierPath::truncate | ( | double | from_t, |
double | to_t | ||
) |
Truncates the bezier path from a given point, to a given point.
Provides a truncated bezier path between the given start point and endpoint. This does not modify the existing bezier, and returns the truncated bezier.
|
read |
Identifies the number of beziers in the path.
OMC::BezierPath::bounding_box |
Get the bounding-box of the bezier.
OMC::BezierPath::bounding_box_inner |
Get the bounding-box of the bezier.
|
read |
True if the path is degenerate.
|
readwrite |
True if the path is empty.
OMC::BezierPath::from_tangent |
Get the bezier path's from tangent.
|
read |
Identifies the number of points in the path that exist on the curve.
|
read |
True if the polygon is defined in a clockwise direction – assuming a closed polygon.
|
read |
Get polygon length of the path – if an index is provided, the length is determined starting from that point index.
|
read |
True if the path is a polyline.
OMC::BezierPath::to_tangent |
Get the bezier path's to tangent.