Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Jonathan Lambrechts
seamsh
Commits
dbf527c0
Commit
dbf527c0
authored
Oct 18, 2021
by
Jonathan Lambrechts
Browse files
fix projection for curves
parent
e2e8a39d
Pipeline
#9869
failed with stages
in 2 minutes and 38 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
seamsh/geometry.py
View file @
dbf527c0
...
...
@@ -101,7 +101,9 @@ class Domain:
_tools
.
log
(
"Build topology"
)
curvesiter
=
_tools
.
chain
(
self
.
_curves
,
self
.
_interior_curves
)
allpoints
=
_tools
.
np
.
row_stack
(
list
(
_tools
.
chain
(
(
curve
.
points
for
curve
in
curvesiter
),
(
_tools
.
project_points
(
curve
.
points
,
curve
.
projection
,
self
.
_projection
)
for
curve
in
curvesiter
),
(
point
.
x
for
point
in
self
.
_interior_points
))))
self
.
_points
,
unique_id
,
breakpts
=
_generate_unique_points
(
allpoints
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment