- Eliminate classi non usate
- Eliminato Componente di Test
This commit is contained in:
@@ -110,25 +110,6 @@ namespace WebWindowComplex.Json
|
||||
HORIZONTAL = 2
|
||||
}
|
||||
|
||||
public enum GDB_TY
|
||||
{
|
||||
NONE = 0,
|
||||
GROUP = 2,
|
||||
GEO_VECTOR = 128,
|
||||
GEO_POINT = 129,
|
||||
GEO_FRAME = 130,
|
||||
CRV_LINE = 256,
|
||||
CRV_ARC = 257,
|
||||
CRV_BEZ = 258,
|
||||
CRV_COMPO = 259,
|
||||
SRF_MESH = 512,
|
||||
SRF_FRGN = 513,
|
||||
SRF_BEZ = 514,
|
||||
VOL_ZMAP = 1024,
|
||||
EXT_TEXT = 2048,
|
||||
EXT_DIMENSION = 2049
|
||||
}
|
||||
|
||||
// Specifies the display state of an element.
|
||||
public enum Visibility
|
||||
{
|
||||
@@ -139,52 +120,5 @@ namespace WebWindowComplex.Json
|
||||
// Do not display the element, and do not reserve space for it in layout.
|
||||
COLLAPSED
|
||||
}
|
||||
|
||||
//LUA
|
||||
public enum LuaShapes {
|
||||
RECT = 1,
|
||||
CHAMFER_SIDE = 2,
|
||||
CHAMFER = 3,
|
||||
ROUND_ARC = 4,
|
||||
SEGMENTAL_ARC = 5,
|
||||
POINTED_ARC = 6,
|
||||
TRIANGLE = 7
|
||||
}
|
||||
|
||||
public struct Point3d
|
||||
{
|
||||
public double x;
|
||||
|
||||
public double y;
|
||||
|
||||
public double z;
|
||||
|
||||
public Point3d(double dX, double dY, double dZ)
|
||||
{
|
||||
this = default(Point3d);
|
||||
x = dX;
|
||||
y = dY;
|
||||
z = dZ;
|
||||
}
|
||||
|
||||
public Point3d(ref Point3d PtP)
|
||||
{
|
||||
this = default(Point3d);
|
||||
x = PtP.x;
|
||||
y = PtP.y;
|
||||
z = PtP.z;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return x.ToString("F3", CultureInfo.InvariantCulture) + "," + y.ToString("F3", CultureInfo.InvariantCulture) + "," + z.ToString("F3", CultureInfo.InvariantCulture);
|
||||
}
|
||||
|
||||
public static Point3d ORIG()
|
||||
{
|
||||
return new Point3d(0.0, 0.0, 0.0);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user