Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/Gerber/Enumerations.cs')
-rw-r--r--UVtools.Core/Gerber/Enumerations.cs37
1 files changed, 37 insertions, 0 deletions
diff --git a/UVtools.Core/Gerber/Enumerations.cs b/UVtools.Core/Gerber/Enumerations.cs
new file mode 100644
index 0000000..0e38c42
--- /dev/null
+++ b/UVtools.Core/Gerber/Enumerations.cs
@@ -0,0 +1,37 @@
+/*
+ * GNU AFFERO GENERAL PUBLIC LICENSE
+ * Version 3, 19 November 2007
+ * Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
+ * Everyone is permitted to copy and distribute verbatim copies
+ * of this license document, but changing it is not allowed.
+ */
+namespace UVtools.Core.Gerber;
+
+public enum GerberPositionType : byte
+{
+ Absolute,
+ Relative
+}
+
+public enum GerberUnitType : byte
+{
+ Millimeter,
+ Inch
+}
+
+public enum GerberPolarityType : byte
+{
+ Dark,
+ Clear
+}
+
+
+public enum GerberMoveType : byte
+{
+ // G01
+ Linear,
+ // G02
+ Arc,
+ // G03
+ ArcCounterClockwise
+} \ No newline at end of file