From 3dc3d077b1cda3592a059783b7e14055fa2df58e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Tue, 2 Jun 2020 09:38:43 +0200 Subject: [PATCH] Polytype -> Polytope --- src/basic_types.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic_types.jl b/src/basic_types.jl index ffecfad3..c83291e2 100644 --- a/src/basic_types.jl +++ b/src/basic_types.jl @@ -8,7 +8,7 @@ Base.ndims(x::AbstractGeometry{Dim}) where Dim = Dim """ Geometry made of N connected points. Connected as one flat geometry, it makes a Ngon / Polygon. Connected as volume it will be a Simplex / Tri / Cube. -Note That `Polytype{N} where N == 3` denotes a Triangle both as a Simplex or Ngon. +Note That `Polytope{N} where N == 3` denotes a Triangle both as a Simplex or Ngon. """ abstract type Polytope{Dim, T} <: AbstractGeometry{Dim, T} end abstract type AbstractPolygon{Dim, T} <: Polytope{Dim, T} end