Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GeoModel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GeoModelDev
GeoModel
Merge requests
!398
GeoDefinitions add Line & plane with intersect methods
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
GeoDefinitions add Line & plane with intersect methods
AddLine3D
into
main
Overview
1
Commits
4
Pipelines
6
Changes
5
Merged
Johannes Junggeburth
requested to merge
AddLine3D
into
main
5 months ago
Overview
1
Commits
4
Pipelines
6
Changes
5
Expand
0
0
Merge request reports
Compare
main
version 4
58204152
5 months ago
version 3
3cf9bb95
5 months ago
version 2
9a0f51ee
5 months ago
version 1
98e2e314
5 months ago
main (base)
and
latest version
latest version
850efbd1
4 commits,
5 months ago
version 4
58204152
4 commits,
5 months ago
version 3
3cf9bb95
3 commits,
5 months ago
version 2
9a0f51ee
2 commits,
5 months ago
version 1
98e2e314
1 commit,
5 months ago
5 files
+
219
−
33
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
GeoModelCore/GeoModelHelpers/GeoModelHelpers/TransformToStringConverter.h
+
4
−
0
Options
@@ -28,6 +28,10 @@ namespace GeoTrf{
std
::
string
toString
(
const
Transform3D
&
trans
,
bool
useCoordAngles
=
false
,
int
precision
=
4
);
std
::
string
toString
(
const
EulerAngles
&
angles
,
int
precision
=
4
);
std
::
string
toString
(
const
CoordEulerAngles
&
angles
,
int
precision
=
4
);
std
::
string
toString
(
const
Line3D
&
line
,
int
precision
=
4
);
std
::
string
toString
(
const
Plane3D
&
plane
,
int
precision
=
4
);
}
#endif
\ No newline at end of file
Loading