Skip to content

Commit 9087992

Browse files
committed
don't use Dim for N
1 parent e67ba47 commit 9087992

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/basic_types.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ abstract type Polytope{Dim, T} <: AbstractGeometry{Dim, T} end
1212
abstract type AbstractPolygon{Dim, T} <: Polytope{Dim, T} end
1313

1414
abstract type AbstractPoint{Dim, T} <: StaticVector{Dim, T} end
15-
abstract type AbstractFace{Dim, T} <: StaticVector{Dim, T} end
16-
abstract type AbstractSimplexFace{Dim, T} <: AbstractFace{Dim, T} end
17-
abstract type AbstractNgonFace{Dim, T} <: AbstractFace{Dim, T} end
15+
abstract type AbstractFace{N, T} <: StaticVector{N, T} end
16+
abstract type AbstractSimplexFace{N, T} <: AbstractFace{N, T} end
17+
abstract type AbstractNgonFace{N, T} <: AbstractFace{N, T} end
1818

1919
abstract type AbstractSimplex{Dim, N, T} <: StaticVector{Dim, T} end
2020

0 commit comments

Comments
 (0)