14 lines
175 B
C#
14 lines
175 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace KGdev.BI3D.Revit.ExporterV2
|
|||
|
|
{
|
|||
|
|
internal struct Position
|
|||
|
|
{
|
|||
|
|
public float X;
|
|||
|
|
|
|||
|
|
public float Y;
|
|||
|
|
|
|||
|
|
public float Z;
|
|||
|
|
}
|
|||
|
|
}
|