BoundBox3D Constructors
Overloads
| Name | Description |
|---|---|
| BoundBox3D() | Construction |
| BoundBox3D(Vertex3D min, Vertex3D max) | Construction |
| BoundBox3D(Vector3D min, Vector3D max) | Construction |
| BoundBox3D(float x1, float y1, float z1, float x2, float y2, float z2) | Construction |
| BoundBox3D(string x1, string y1, string z1, string x2, string y2, string z2) | Construction |
| BoundBox3D(float[] min, float[] max) | Construction |
| BoundBox3D(string minmax) | Construction |
| BoundBox3D(Vertex3D center, float xLength, float yLength, float zLength) | Construction |
BoundBox3D()
public BoundBox3D()
Construction
BoundBox3D(Vertex3D min, Vertex3D max)
public BoundBox3D(Vertex3D min, Vertex3D max)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| min | Vertex3D | Min. Point |
| max | Vertex3D | Max. Point |
BoundBox3D(Vector3D min, Vector3D max)
public BoundBox3D(Vector3D min, Vector3D max)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| min | Vector3D | Min. Point |
| max | Vector3D | Max. Point |
BoundBox3D(float x1, float y1, float z1, float x2, float y2, float z2)
public BoundBox3D(float x1, float y1, float z1, float x2, float y2, float z2)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| x1 | float | Min. X |
| y1 | float | Min. Y |
| z1 | float | Min. Z |
| x2 | float | Max. X |
| y2 | float | Max. Y |
| z2 | float | Max. Z |
BoundBox3D(string x1, string y1, string z1, string x2, string y2, string z2)
public BoundBox3D(string x1, string y1, string z1, string x2, string y2, string z2)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| x1 | string | Min. X |
| y1 | string | Min. Y |
| z1 | string | Min. Z |
| x2 | string | Max. X |
| y2 | string | Max. Y |
| z2 | string | Max. Z |
BoundBox3D(float[] min, float[] max)
public BoundBox3D(float[] min, float[] max)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| min | Single[] | Min. |
| max | Single[] | Max. |
BoundBox3D(string minmax)
public BoundBox3D(string minmax)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| minmax | string | X1,Y1,Z1,X2,Y2,Z2 문자열 |
BoundBox3D(Vertex3D center, float xLength, float yLength, float zLength)
public BoundBox3D(Vertex3D center, float xLength, float yLength, float zLength)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| center | Vertex3D | Center |
| xLength | float | X Axis. Length |
| yLength | float | Y Axis. Length |
| zLength | float | Z Axis. Length |