Class PolyfaceMeshVertex
Represents a polyface mesh 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 PolyfaceMeshVertex : DxfObject, ICloneable
Constructors
| Improve this Doc View SourcePolyfaceMeshVertex()
Initializes a new instance of the PolylineVertex class.
Declaration
public PolyfaceMeshVertex()
PolyfaceMeshVertex(Vector3)
Initializes a new instance of the PolylineVertex class.
Declaration
public PolyfaceMeshVertex(Vector3 location)
Parameters
| Type | Name | Description |
|---|---|---|
| Vector3 | location | Polyface mesh vertex Vector3. |
PolyfaceMeshVertex(Double, Double, Double)
Initializes a new instance of the PolylineVertex class.
Declaration
public PolyfaceMeshVertex(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 SourcePosition
Gets or sets the polyface mesh vertex Vector3.
Declaration
public Vector3 Position { get; set; }
Property Value
| Type | Description |
|---|---|
| Vector3 |
Methods
| Improve this Doc View SourceClone()
Creates a new PolyfaceMeshVertex that is a copy of the current instance.
Declaration
public object Clone()
Returns
| Type | Description |
|---|---|
| System.Object | A new PolyfaceMeshVertex 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