Skip to content

Commit

Permalink
Remove links to images in CSG docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
fhagemann committed Dec 29, 2024
1 parent b404d5c commit 6724a68
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/ConstructiveSolidGeometry/CSG.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
A `CSGUnion` of two geometries `a` and `b` is defined as the set of points that are in at least
one of either `a` or `b` (`a || b`).
![CSGUnion](../../docs/src/assets/CSGUnion.png)
## Parametric types
* `T`: Precision type.
* `A`: Type of geometry `a`.
Expand Down Expand Up @@ -64,8 +62,6 @@ UnionDictionary(g::AbstractGeometry{T}) where {T} = [Dictionary(g)]
A `CSGIntersection` of two geometries `a` and `b` is defined as the set of points
that are both in `a` and in `b` (`a && b`).
![CSGIntersection](../../docs/src/assets/CSGIntersection.png)
## Parametric types
* `T`: Precision type.
* `A`: Type of geometry `a`.
Expand Down Expand Up @@ -125,8 +121,6 @@ IntersectionDictionary(g::AbstractGeometry{T}) where {T} = [Dictionary(g)]
A `CSGDifference` of two geometries `a` and `b` is defined as the set of points that are
in `a` but not in `b` (`a && !b`).
![CSGDifference](../../docs/src/assets/CSGDifference.png)
!!! note
Note that `b` is treated as open primitive. This means that points which are in
`a` and on the surface of `b` will still be in the `CSGDifference` of `a` and `b`.
Expand Down

0 comments on commit 6724a68

Please sign in to comment.