This .NET class wraps the AcGeOffsetCurve2d ObjectARX class.
Represents a curve that is an exact offset of another curve (base curve). An object of this class stores a pointer to the base curve of which it is an offset. This means that any modification of the base curve also modifies the offset curve. Since this curve is an exact offset, it may be self-intersecting even though the base curve is not self-intersecting (a non-self-intersecting offset curve can be created by calling Curve2d.GetTrimmedOffset.)
The positive direction of offset at each point of the base curve is perpendicular to the tangent vector at that point. So if the tangent vector at a point on the base curve is (x,y), then the positive direction of offset will be (-y,x). The base curve may be offset in either of two directions by specifying a positive or negative offset value. Objects of this class may also be constructed with an offset distance of 0, in which case the offset curve is simply a replica of the base curve.
Functions that modify the offset curve such as TransformBy(), GetReverseParameterCurve(), and SetInterval(), do not modify the base curve. If GetReverseParameterCurve() is called for an offset curve, then the direction of the resulting offset curve will be opposite that of the base curve. If SetInterval() is called for an offset curve, then the offset curve represents an offset of the specified interval of the base curve. This is useful for creating multiple offset curves, each of which represents a separate interval of the base curve. For instance if three offset curves are constructed from the same base curve whose interval is [0,1], then SetInterval() could be called for each of these offset curves to set their intervals to something like [.1,.3], [.5,.6], and [.7,.9]. If the offset distance was set to 0, then these offset curves would each represent a different trimmed portion of the base curve. Any of these offset curves could then be transformed or reversed without modifying the other offset curves or the base curve.
If the offset curve is constructed with an offset distance that is not 0, then the continuity of the offset curve will be one less than the continuity of the base curve. So if the base curve has continuity in the second derivative (but not the third), then the offset curve only has continuity in the first derivative. If the base curve is discontinuous in the first derivative, then the offset curve may not be continuous at all. Therefore, the base curve should at least be continuous in the first derivative to ensure that the offset curve represents a valid curve.
Autodesk.AutoCAD.Geometry.Entity2d Autodesk.AutoCAD.Geometry.Curve2d Autodesk.AutoCAD.Geometry.OffsetCurve2d
Public sealed Class OffsetCurve2d Inherits Curve2d
public sealed class OffsetCurve2d : Curve2d;
Comments? |