DrawRectangle
Overloads
| Name | Description |
|---|---|
| DrawRectangle(Point min, Point max, int height, int groupId, Color color, float thickness, bool visible) | Draw Rectangle (Only Z+) |
DrawRectangle(Point min, Point max, int height, int groupId, Color color, float thickness, bool visible)
public int DrawRectangle(Point min, Point max, int height, int groupId, Color color, float thickness, bool visible)
Draw Rectangle (Only Z+)
Parameters
| Name | Type | Description |
|---|---|---|
| min | Point | Min. Point |
| max | Point | Max. Point |
| height | int | Height |
| groupId | int | Group Id |
| color | Color | 라인 색상 |
| thickness | float | 라인 두께 |
| visible | bool | 보이기/숨기기 상태 |
Returns
| Type | Description |
|---|---|
| int | 등록된 개체 ID |
Examples
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void Example()
{
System.Drawing.Point p1 = new System.Drawing.Point(53674, -151674);
System.Drawing.Point p2 = new System.Drawing.Point(610765, -292509);
int shapeId = vizcore3d.ShapeDrawing.DrawRectangle(
p1 /* Min. Point */
, p2 /* Max. Point */
, 91127 /* Height : Z Axis. */
, 1 /* Group Id */
, Color.Red /* Line Color */
, 5 /* Thickness */
, true /* Visible */
);
}