diff --git a/src/ApplicationController.cpp b/src/ApplicationController.cpp index 43ae3d9..2f9c2e3 100644 --- a/src/ApplicationController.cpp +++ b/src/ApplicationController.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "ApplicationController.h" #include "Document.h" #include "SketchFeature.h" diff --git a/src/ApplicationController.h b/src/ApplicationController.h index cc9ca80..7e36ff7 100644 --- a/src/ApplicationController.h +++ b/src/ApplicationController.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef APPLICATIONCONTROLLER_H #define APPLICATIONCONTROLLER_H diff --git a/src/Camera.cpp b/src/Camera.cpp index 372267a..90443a4 100644 --- a/src/Camera.cpp +++ b/src/Camera.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "Camera.h" #include "ViewportWidget.h" #include diff --git a/src/Camera.h b/src/Camera.h index 0b962d0..6c55b43 100644 --- a/src/Camera.h +++ b/src/Camera.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef CAMERA_H #define CAMERA_H diff --git a/src/CircleTool.cpp b/src/CircleTool.cpp index 1b23cce..a1dc726 100644 --- a/src/CircleTool.cpp +++ b/src/CircleTool.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "CircleTool.h" #include "ViewportWidget.h" #include "Camera.h" diff --git a/src/CircleTool.h b/src/CircleTool.h index 4d112ed..dfe05ac 100644 --- a/src/CircleTool.h +++ b/src/CircleTool.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef CIRCLETOOL_H #define CIRCLETOOL_H diff --git a/src/DebugWindow.cpp b/src/DebugWindow.cpp index 8640954..92006b2 100644 --- a/src/DebugWindow.cpp +++ b/src/DebugWindow.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "DebugWindow.h" #include "Camera.h" diff --git a/src/DebugWindow.h b/src/DebugWindow.h index 2cc6a2b..f67deb2 100644 --- a/src/DebugWindow.h +++ b/src/DebugWindow.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef DEBUGWINDOW_H #define DEBUGWINDOW_H diff --git a/src/Document.cpp b/src/Document.cpp index f66df09..46aadf7 100644 --- a/src/Document.cpp +++ b/src/Document.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "Document.h" #include "Feature.h" #include "SketchFeature.h" diff --git a/src/Document.h b/src/Document.h index 9d9006b..c14efa0 100644 --- a/src/Document.h +++ b/src/Document.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef DOCUMENT_H #define DOCUMENT_H diff --git a/src/Feature.cpp b/src/Feature.cpp index b8acf03..5748f2d 100644 --- a/src/Feature.cpp +++ b/src/Feature.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "Feature.h" Feature::Feature(const QString& name) : m_name(name) diff --git a/src/Feature.h b/src/Feature.h index 53ea8a8..fe5aa7f 100644 --- a/src/Feature.h +++ b/src/Feature.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef FEATURE_H #define FEATURE_H diff --git a/src/FeatureBrowser.cpp b/src/FeatureBrowser.cpp index ec03797..4a7ce77 100644 --- a/src/FeatureBrowser.cpp +++ b/src/FeatureBrowser.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "FeatureBrowser.h" #include "Document.h" #include "Feature.h" diff --git a/src/FeatureBrowser.h b/src/FeatureBrowser.h index 4b2cda3..23361e0 100644 --- a/src/FeatureBrowser.h +++ b/src/FeatureBrowser.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef FEATUREBROWSER_H #define FEATUREBROWSER_H diff --git a/src/LineTool.cpp b/src/LineTool.cpp index 8517c95..750536c 100644 --- a/src/LineTool.cpp +++ b/src/LineTool.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "LineTool.h" #include "ViewportWidget.h" #include "Camera.h" diff --git a/src/LineTool.h b/src/LineTool.h index a532eb3..eeb74ab 100644 --- a/src/LineTool.h +++ b/src/LineTool.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef LINETOOL_H #define LINETOOL_H diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 4ee5257..310252a 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "MainWindow.h" #include "ViewportWidget.h" #include "Document.h" diff --git a/src/MainWindow.h b/src/MainWindow.h index ef9368a..b69b9a3 100644 --- a/src/MainWindow.h +++ b/src/MainWindow.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef MAINWINDOW_H #define MAINWINDOW_H diff --git a/src/RectangleTool.cpp b/src/RectangleTool.cpp index e0f49fa..691d586 100644 --- a/src/RectangleTool.cpp +++ b/src/RectangleTool.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "RectangleTool.h" #include "ViewportWidget.h" #include "Camera.h" diff --git a/src/RectangleTool.h b/src/RectangleTool.h index edefc79..d897941 100644 --- a/src/RectangleTool.h +++ b/src/RectangleTool.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef RECTANGLETOOL_H #define RECTANGLETOOL_H diff --git a/src/SketchCircle.cpp b/src/SketchCircle.cpp index 4e94f7b..03f34da 100644 --- a/src/SketchCircle.cpp +++ b/src/SketchCircle.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "SketchCircle.h" #include diff --git a/src/SketchCircle.h b/src/SketchCircle.h index 04089fe..7026103 100644 --- a/src/SketchCircle.h +++ b/src/SketchCircle.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef SKETCHCIRCLE_H #define SKETCHCIRCLE_H diff --git a/src/SketchFeature.cpp b/src/SketchFeature.cpp index eae6d17..481c523 100644 --- a/src/SketchFeature.cpp +++ b/src/SketchFeature.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "SketchFeature.h" #include "SketchObject.h" #include "SketchLine.h" diff --git a/src/SketchFeature.h b/src/SketchFeature.h index 7af7e29..67a708b 100644 --- a/src/SketchFeature.h +++ b/src/SketchFeature.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef SKETCHFEATURE_H #define SKETCHFEATURE_H diff --git a/src/SketchGrid.cpp b/src/SketchGrid.cpp index 8b8dae9..de3c727 100644 --- a/src/SketchGrid.cpp +++ b/src/SketchGrid.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "SketchGrid.h" #include "ViewportWidget.h" #include "Camera.h" diff --git a/src/SketchGrid.h b/src/SketchGrid.h index fc2f44e..17311ab 100644 --- a/src/SketchGrid.h +++ b/src/SketchGrid.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef SKETCHGRID_H #define SKETCHGRID_H diff --git a/src/SketchLine.cpp b/src/SketchLine.cpp index 70f982e..86ff2b9 100644 --- a/src/SketchLine.cpp +++ b/src/SketchLine.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "SketchLine.h" #include diff --git a/src/SketchLine.h b/src/SketchLine.h index dab72aa..aee8c3c 100644 --- a/src/SketchLine.h +++ b/src/SketchLine.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef SKETCHLINE_H #define SKETCHLINE_H diff --git a/src/SketchObject.h b/src/SketchObject.h index d2346e5..8125aef 100644 --- a/src/SketchObject.h +++ b/src/SketchObject.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef SKETCHOBJECT_H #define SKETCHOBJECT_H diff --git a/src/SketchRectangle.cpp b/src/SketchRectangle.cpp index 254965f..4a6e96b 100644 --- a/src/SketchRectangle.cpp +++ b/src/SketchRectangle.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "SketchRectangle.h" #include diff --git a/src/SketchRectangle.h b/src/SketchRectangle.h index 1cf1203..76d7fe8 100644 --- a/src/SketchRectangle.h +++ b/src/SketchRectangle.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef SKETCHRECTANGLE_H #define SKETCHRECTANGLE_H diff --git a/src/SketchTool.cpp b/src/SketchTool.cpp index b55efb0..54fab32 100644 --- a/src/SketchTool.cpp +++ b/src/SketchTool.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "SketchTool.h" #include "ViewportWidget.h" #include diff --git a/src/SketchTool.h b/src/SketchTool.h index 4899410..52b0085 100644 --- a/src/SketchTool.h +++ b/src/SketchTool.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef SKETCHTOOL_H #define SKETCHTOOL_H diff --git a/src/Snapping.cpp b/src/Snapping.cpp index dc17f22..6919f2b 100644 --- a/src/Snapping.cpp +++ b/src/Snapping.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "Snapping.h" #include "ViewportWidget.h" diff --git a/src/Snapping.h b/src/Snapping.h index ff6b4ae..7640d59 100644 --- a/src/Snapping.h +++ b/src/Snapping.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef SNAPPING_H #define SNAPPING_H diff --git a/src/ViewCube.cpp b/src/ViewCube.cpp index b4bb53e..363ac7a 100644 --- a/src/ViewCube.cpp +++ b/src/ViewCube.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "ViewCube.h" #include #include diff --git a/src/ViewCube.h b/src/ViewCube.h index 8d5d20b..e014ba3 100644 --- a/src/ViewCube.h +++ b/src/ViewCube.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef VIEWCUBE_H #define VIEWCUBE_H diff --git a/src/ViewportWidget.cpp b/src/ViewportWidget.cpp index 60dcdc7..eaa7ff6 100644 --- a/src/ViewportWidget.cpp +++ b/src/ViewportWidget.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include "ViewportWidget.h" #include "Snapping.h" #include "Camera.h" diff --git a/src/ViewportWidget.h b/src/ViewportWidget.h index 2b2420d..e9d2161 100644 --- a/src/ViewportWidget.h +++ b/src/ViewportWidget.h @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #ifndef VIEWPORTWIDGET_H #define VIEWPORTWIDGET_H diff --git a/src/main.cpp b/src/main.cpp index 0b2ef98..5ad6105 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,3 +1,10 @@ +// Unnamed CAD Software +// +// License: GPLv3 (or later) +// Language: C++17 +// Notes: +// - use a right-handed, Z-up coordinate system to match Open CASCADE + #include #include "MainWindow.h" #include "ApplicationController.h"