Vertex3D Constructors
Overloads
| Name | Description |
|---|---|
| Vertex3D() | Construction |
| Vertex3D(float x, float y, float z) | Construction |
| Vertex3D(string x, string y, string z) | Construction |
| Vertex3D(int x, int y, int z) | Construction |
| Vertex3D(double x, double y, double z) | Construction |
| Vertex3D(Vertex3D v) | Construction |
| Vertex3D(string str, string separator) | Construction |
Vertex3D()
public Vertex3D()
Construction
Vertex3D(float x, float y, float z)
public Vertex3D(float x, float y, float z)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| x | float | X Point |
| y | float | Y Point |
| z | float | Z Point |
Vertex3D(string x, string y, string z)
public Vertex3D(string x, string y, string z)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| x | string | X Point |
| y | string | Y Point |
| z | string | Z Point |
Vertex3D(int x, int y, int z)
public Vertex3D(int x, int y, int z)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| x | int | X Point |
| y | int | Y Point |
| z | int | Z Point |
Vertex3D(double x, double y, double z)
public Vertex3D(double x, double y, double z)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| x | double | X Point |
| y | double | Y Point |
| z | double | Z Point |
Vertex3D(Vertex3D v)
public Vertex3D(Vertex3D v)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| v | Vertex3D | Vertex |
Vertex3D(string str, string separator)
public Vertex3D(string str, string separator)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| str | string | 정점 문자열 |
| separator | string | 문자열 구분자. 예) ',' |
Examples
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void Example()
{
string str = "100,200,300";
VIZCore3D.NET.Data.Vertex3D v = new VIZCore3D.NET.Data.Vertex3D(str, ",");
}