Compare commits
2 Commits
master
...
f22c14e8ad
| Author | SHA1 | Date | |
|---|---|---|---|
| f22c14e8ad | |||
| 95dfacd994 |
@@ -7,7 +7,7 @@
|
|||||||
On Debian 12:
|
On Debian 12:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ sudo apt install cmake qt6-base-dev qt6-svg-dev libtbb-dev libfontconfig1-dev
|
$ sudo apt install cmake qt6-base-dev qt6-svg-dev libtbb-dev
|
||||||
$ sudo apt install libocct-foundation-dev libocct-modeling-data-dev libocct-modeling-algorithms-dev libocct-visualization-dev
|
$ sudo apt install libocct-foundation-dev libocct-modeling-data-dev libocct-modeling-algorithms-dev libocct-visualization-dev
|
||||||
|
|
||||||
$ mkdir build
|
$ mkdir build
|
||||||
@@ -22,7 +22,7 @@ $ ./OpenCAD
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
This program is free and open-source software licensed under the GNU GPLv3 (or later). Please see the `LICENSE.txt` file for details.
|
This program is free and open-source software licensed under the GNU GPLv3. Please see the `LICENSE.txt` file for details.
|
||||||
|
|
||||||
That means you have the right to study, change, and distribute the software and source code to anyone and for any purpose as long as you grant the same rights when distributing it.
|
That means you have the right to study, change, and distribute the software and source code to anyone and for any purpose as long as you grant the same rights when distributing it.
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "ApplicationController.h"
|
#include "ApplicationController.h"
|
||||||
#include "Document.h"
|
#include "Document.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef APPLICATIONCONTROLLER_H
|
#ifndef APPLICATIONCONTROLLER_H
|
||||||
#define APPLICATIONCONTROLLER_H
|
#define APPLICATIONCONTROLLER_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "Camera.h"
|
#include "Camera.h"
|
||||||
#include "ViewportWidget.h"
|
#include "ViewportWidget.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef CAMERA_H
|
#ifndef CAMERA_H
|
||||||
#define CAMERA_H
|
#define CAMERA_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "CircleTool.h"
|
#include "CircleTool.h"
|
||||||
#include "ViewportWidget.h"
|
#include "ViewportWidget.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef CIRCLETOOL_H
|
#ifndef CIRCLETOOL_H
|
||||||
#define CIRCLETOOL_H
|
#define CIRCLETOOL_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "DebugWindow.h"
|
#include "DebugWindow.h"
|
||||||
#include "Camera.h"
|
#include "Camera.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef DEBUGWINDOW_H
|
#ifndef DEBUGWINDOW_H
|
||||||
#define DEBUGWINDOW_H
|
#define DEBUGWINDOW_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "Document.h"
|
#include "Document.h"
|
||||||
#include "Feature.h"
|
#include "Feature.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef DOCUMENT_H
|
#ifndef DOCUMENT_H
|
||||||
#define DOCUMENT_H
|
#define DOCUMENT_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "Feature.h"
|
#include "Feature.h"
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef FEATURE_H
|
#ifndef FEATURE_H
|
||||||
#define FEATURE_H
|
#define FEATURE_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "FeatureBrowser.h"
|
#include "FeatureBrowser.h"
|
||||||
#include "Document.h"
|
#include "Document.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef FEATUREBROWSER_H
|
#ifndef FEATUREBROWSER_H
|
||||||
#define FEATUREBROWSER_H
|
#define FEATUREBROWSER_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "LineTool.h"
|
#include "LineTool.h"
|
||||||
#include "ViewportWidget.h"
|
#include "ViewportWidget.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef LINETOOL_H
|
#ifndef LINETOOL_H
|
||||||
#define LINETOOL_H
|
#define LINETOOL_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "MainWindow.h"
|
#include "MainWindow.h"
|
||||||
#include "ViewportWidget.h"
|
#include "ViewportWidget.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef MAINWINDOW_H
|
#ifndef MAINWINDOW_H
|
||||||
#define MAINWINDOW_H
|
#define MAINWINDOW_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "RectangleTool.h"
|
#include "RectangleTool.h"
|
||||||
#include "ViewportWidget.h"
|
#include "ViewportWidget.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef RECTANGLETOOL_H
|
#ifndef RECTANGLETOOL_H
|
||||||
#define RECTANGLETOOL_H
|
#define RECTANGLETOOL_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "SketchCircle.h"
|
#include "SketchCircle.h"
|
||||||
#include <QJsonArray>
|
#include <QJsonArray>
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef SKETCHCIRCLE_H
|
#ifndef SKETCHCIRCLE_H
|
||||||
#define SKETCHCIRCLE_H
|
#define SKETCHCIRCLE_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "SketchFeature.h"
|
#include "SketchFeature.h"
|
||||||
#include "SketchObject.h"
|
#include "SketchObject.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef SKETCHFEATURE_H
|
#ifndef SKETCHFEATURE_H
|
||||||
#define SKETCHFEATURE_H
|
#define SKETCHFEATURE_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "SketchGrid.h"
|
#include "SketchGrid.h"
|
||||||
#include "ViewportWidget.h"
|
#include "ViewportWidget.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef SKETCHGRID_H
|
#ifndef SKETCHGRID_H
|
||||||
#define SKETCHGRID_H
|
#define SKETCHGRID_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "SketchLine.h"
|
#include "SketchLine.h"
|
||||||
#include <QJsonObject>
|
#include <QJsonObject>
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef SKETCHLINE_H
|
#ifndef SKETCHLINE_H
|
||||||
#define SKETCHLINE_H
|
#define SKETCHLINE_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef SKETCHOBJECT_H
|
#ifndef SKETCHOBJECT_H
|
||||||
#define SKETCHOBJECT_H
|
#define SKETCHOBJECT_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "SketchRectangle.h"
|
#include "SketchRectangle.h"
|
||||||
#include <QJsonArray>
|
#include <QJsonArray>
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef SKETCHRECTANGLE_H
|
#ifndef SKETCHRECTANGLE_H
|
||||||
#define SKETCHRECTANGLE_H
|
#define SKETCHRECTANGLE_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "SketchTool.h"
|
#include "SketchTool.h"
|
||||||
#include "ViewportWidget.h"
|
#include "ViewportWidget.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef SKETCHTOOL_H
|
#ifndef SKETCHTOOL_H
|
||||||
#define SKETCHTOOL_H
|
#define SKETCHTOOL_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "Snapping.h"
|
#include "Snapping.h"
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef SNAPPING_H
|
#ifndef SNAPPING_H
|
||||||
#define SNAPPING_H
|
#define SNAPPING_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "ViewCube.h"
|
#include "ViewCube.h"
|
||||||
#include <QGuiApplication>
|
#include <QGuiApplication>
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef VIEWCUBE_H
|
#ifndef VIEWCUBE_H
|
||||||
#define VIEWCUBE_H
|
#define VIEWCUBE_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include "ViewportWidget.h"
|
#include "ViewportWidget.h"
|
||||||
#include "Snapping.h"
|
#include "Snapping.h"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#ifndef VIEWPORTWIDGET_H
|
#ifndef VIEWPORTWIDGET_H
|
||||||
#define VIEWPORTWIDGET_H
|
#define VIEWPORTWIDGET_H
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
// Unnamed CAD Software
|
// Unnamed CAD Software
|
||||||
//
|
//
|
||||||
// License: GPLv3 (or later)
|
// License: GPLv3, see LICENSE.txt
|
||||||
// Language: C++17
|
// Language: C++17
|
||||||
// Notes:
|
// Notes:
|
||||||
// - use a right-handed, Z-up coordinate system to match Open CASCADE
|
// - use a right-handed, Z-up coordinate system to match OpenCASCADE
|
||||||
|
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include "MainWindow.h"
|
#include "MainWindow.h"
|
||||||
|
|||||||
Reference in New Issue
Block a user