Show / Hide Table of Contents

Class PolylineVertex

Represents a Polyline vertex.

Inheritance
System.Object
DxfObject
PolylineVertex
Implements
System.ICloneable
Inherited Members
DxfObject.CodeName
DxfObject.Handle
DxfObject.Owner
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 Source

PolylineVertex()

Initializes a new instance of the PolylineVertex class.

Declaration
public PolylineVertex()
| Improve this Doc View Source

PolylineVertex(Vector3)

Initializes a new instance of the PolylineVertex class.

Declaration
public PolylineVertex(Vector3 position)
Parameters
Type Name Description
Vector3 position

Polyline Vector3 coordinates.

| Improve this Doc View Source

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 Source

Bulge

Declaration
public double Bulge { get; set; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

EndWidth

Declaration
public double EndWidth { get; set; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

Position

Gets or sets the vertex Vector3.

Declaration
public Vector3 Position { get; set; }
Property Value
Type Description
Vector3
| Improve this Doc View Source

StartWidth

Declaration
public double StartWidth { get; set; }
Property Value
Type Description
System.Double

Methods

| Improve this Doc View Source

Clone()

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.

| Improve this Doc View Source

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
DxfObject.ToString()

Implements

System.ICloneable
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX