Class PolylineVertex
Represents a Polyline vertex.
Implements
System.ICloneable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: netDxf.Entities
Assembly: CADability.dll
Syntax
public class PolylineVertex : DxfObject, ICloneable
Constructors
| Improve this Doc View SourcePolylineVertex()
Initializes a new instance of the PolylineVertex class.
Declaration
public PolylineVertex()
PolylineVertex(Vector3)
Initializes a new instance of the PolylineVertex class.
Declaration
public PolylineVertex(Vector3 position)
Parameters
| Type | Name | Description |
|---|---|---|
| Vector3 | position | Polyline Vector3 coordinates. |
PolylineVertex(Double, Double, Double)
Initializes a new instance of the PolylineVertex class.
Declaration
public PolylineVertex(double x, double y, double z)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Double | x | X coordinate. |
| System.Double | y | Y coordinate. |
| System.Double | z | Z coordinate. |
Properties
| Improve this Doc View SourceBulge
Declaration
public double Bulge { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Double |
EndWidth
Declaration
public double EndWidth { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Double |
Position
Gets or sets the vertex Vector3.
Declaration
public Vector3 Position { get; set; }
Property Value
| Type | Description |
|---|---|
| Vector3 |
StartWidth
Declaration
public double StartWidth { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Double |
Methods
| Improve this Doc View SourceClone()
Creates a new PolylineVertex that is a copy of the current instance.
Declaration
public object Clone()
Returns
| Type | Description |
|---|---|
| System.Object | A new PolylineVertex that is a copy of this instance. |
ToString()
Converts the value of this instance to its equivalent string representation.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| System.String | The string representation. |
Overrides
Implements
System.ICloneable