Eigen как зависимость

Изменение оформления
This commit is contained in:
2025-12-24 18:22:24 +03:00
parent 1cbbaef68b
commit ce2bc67d6d
4 changed files with 107 additions and 61 deletions

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule "dependencies/eigen"]
path = dependencies/eigen
url = https://gitlab.com/libeigen/eigen.git

View File

@@ -7,7 +7,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
# PlaneGCS PART # PlaneGCS PART
set(PlaneGCS_project_name "PlaneGCS") set(PlaneGCS_project_name "PlaneGCS")
set(INCLUDE_BOOST_DIR "C:/local/boost_1_89_0") set(INCLUDE_BOOST_DIR "C:/local/boost_1_89_0")
set(INCLUDE_EIGEN_DIR ${CMAKE_CURRENT_SOURCE_DIR}/eigen-5.0.0) set(INCLUDE_EIGEN_DIR ${CMAKE_CURRENT_SOURCE_DIR}/dependencies/eigen)
add_library(${PlaneGCS_project_name} STATIC add_library(${PlaneGCS_project_name} STATIC
GCS/GCS.cpp GCS/GCS.cpp

View File

@@ -6,14 +6,14 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>691</width> <width>776</width>
<height>615</height> <height>701</height>
</rect> </rect>
</property> </property>
<property name="maximumSize"> <property name="maximumSize">
<size> <size>
<width>1080</width> <width>1080</width>
<height>1080</height> <height>1060</height>
</size> </size>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
@@ -27,64 +27,103 @@
<number>23</number> <number>23</number>
</property> </property>
<item> <item>
<widget class="QPushButton" name="Line_Button"> <layout class="QGridLayout" name="gridLayout">
<property name="minimumSize"> <item row="1" column="0">
<size> <widget class="QPushButton" name="Line_Button">
<width>75</width> <property name="minimumSize">
<height>24</height> <size>
</size> <width>75</width>
</property> <height>24</height>
<property name="text"> </size>
<string>Line</string> </property>
</property> <property name="text">
</widget> <string>Line</string>
</property>
</widget>
</item>
<item row="0" column="0">
<layout class="QVBoxLayout" name="verticalLayout_6">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Primitives</string>
</property>
<property name="alignment">
<set>Qt::AlignmentFlag::AlignCenter</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</item> </item>
<item> <item>
<widget class="QPushButton" name="Parallel_Button"> <layout class="QVBoxLayout" name="verticalLayout_9">
<property name="minimumSize"> <item>
<size> <widget class="QLabel" name="label_2">
<width>75</width> <property name="text">
<height>24</height> <string>Constraints</string>
</size> </property>
</property> <property name="alignment">
<property name="text"> <set>Qt::AlignmentFlag::AlignCenter</set>
<string>Parallel</string> </property>
</property> </widget>
</widget> </item>
</item> <item>
<item> <layout class="QGridLayout" name="gridLayout_2">
<widget class="QPushButton" name="Perpendicular_Button"> <item row="1" column="0">
<property name="text"> <widget class="QPushButton" name="P2P_Button">
<string>Perpendicular</string> <property name="minimumSize">
</property> <size>
</widget> <width>75</width>
</item> <height>24</height>
<item> </size>
<widget class="QPushButton" name="P2P_Button"> </property>
<property name="minimumSize"> <property name="text">
<size> <string>P2P</string>
<width>75</width> </property>
<height>24</height> </widget>
</size> </item>
</property> <item row="0" column="1">
<property name="text"> <widget class="QPushButton" name="Perpendicular_Button">
<string>P2P</string> <property name="text">
</property> <string>Perpendicular</string>
</widget> </property>
</item> </widget>
<item> </item>
<widget class="QPushButton" name="Vertical_Button"> <item row="2" column="0">
<property name="text"> <widget class="QPushButton" name="Horizontal_Button">
<string>Vertical</string> <property name="text">
</property> <string>Horizontal</string>
</widget> </property>
</item> </widget>
<item> </item>
<widget class="QPushButton" name="Horizontal_Button"> <item row="0" column="0">
<property name="text"> <widget class="QPushButton" name="Parallel_Button">
<string>Horizontal</string> <property name="minimumSize">
</property> <size>
</widget> <width>75</width>
<height>24</height>
</size>
</property>
<property name="text">
<string>Parallel</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QPushButton" name="Vertical_Button">
<property name="text">
<string>Vertical</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</item> </item>
</layout> </layout>
</item> </item>
@@ -108,6 +147,9 @@
<height>16777215</height> <height>16777215</height>
</size> </size>
</property> </property>
<property name="cursor">
<cursorShape>CrossCursor</cursorShape>
</property>
<property name="whatsThis"> <property name="whatsThis">
<string>Canvas</string> <string>Canvas</string>
</property> </property>
@@ -120,7 +162,7 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>691</width> <width>776</width>
<height>21</height> <height>21</height>
</rect> </rect>
</property> </property>

1
dependencies/eigen vendored Submodule

Submodule dependencies/eigen added at 9164d3f16a