Skip to content

Commit

Permalink
Test case comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kintel committed Feb 29, 2024
1 parent ea0bf0d commit 379a283
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// A single volume touching itself (two pairs of coincident vertices forming an edge).
// This is a non-manifold object since the collapsed vertices are not distinct.
polyhedron(
points=[
[0, 0, 0],
Expand Down
2 changes: 2 additions & 0 deletions tests/data/scad/3D/misc/polyhedron-self-touch-edge.scad
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// A single volume touching itself (two pairs of coincident vertices forming an edge),
// but with a manifold topology (the coincident vertices are distinct).
polyhedron(
points=[
[0, 0, 0],
Expand Down
1 change: 1 addition & 0 deletions tests/data/scad/3D/misc/polyhedron-self-touch-face.scad
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// A single volume touching itself (three pairs of coincident vertices forming a triangle).
polyhedron(
points=[
[0, 0, 0],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Two cubes sharing an edge.
// This is a non-manifold object since the collapsed vertices are not distinct.
polyhedron(
points=[
[0, 0, 0],
Expand Down
2 changes: 2 additions & 0 deletions tests/data/scad/3D/misc/polyhedrons-touch-face.scad
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Two cubes sharing a face,
// but with a manifold topology (the coincident vertices are distinct).
polyhedron(
points=[
[0, 0, 0],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Two cubes sharing a vertex.
// This is a non-manifold object since the collapsed vertices are not distinct.
polyhedron(
points=[
[0, 0, 0],
Expand Down
2 changes: 2 additions & 0 deletions tests/data/scad/3D/misc/polyhedrons-touch-vertex.scad
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Two cubes sharing a vertex,
// but with a manifold topology (the coincident vertices are distinct).
polyhedron(
points=[
[0, 0, 0],
Expand Down

0 comments on commit 379a283

Please sign in to comment.