14 lines
149 B
C#
14 lines
149 B
C#
namespace ProGrids
|
|
{
|
|
public enum SnapUnit
|
|
{
|
|
Meter = 0,
|
|
Centimeter = 1,
|
|
Millimeter = 2,
|
|
Inch = 3,
|
|
Foot = 4,
|
|
Yard = 5,
|
|
Parsec = 6
|
|
}
|
|
}
|