Descibes the Spherical Shape Parser error
Namespace: Spherical.ShapeAssembly: SphericalHtm (in SphericalHtm.dll) Version: 1.0.0.0
Syntax
| C# |
|---|
public enum Error |
| Visual C++ |
|---|
public enum class Error |
| F# |
|---|
type Error |
Members
| Member name | Value | Description | |
|---|---|---|---|
| Ok | 0 | All is well, no error | |
| errIllegalNumber | 1 | The parsed token was not a number. | |
| errEol | 2 | Premature end of line was reached | |
| errNot2forRect | 3 | There were other than 2 points specified for a RECT command. | |
| errNotenough4Poly | 4 | There weren't at least 3 points for specifying a polygon or convex hull. | |
| errPolyBowtie | 5 | The given polygon is either concave, or has self-intersecting edges | |
| errPolyZeroLength | 6 | The polygon specified contains edges of zero length (eg, from consecutive identical points). | |
| errChullTooBig | 7 | The list of points for convex hull generation span a space larger than a hemisphere. | |
| errChullCoplanar | 8 | The list of points for convex hull generation are all on the same great circle. | |
| errNullSpecification | 9 | An empty string was given as a specification. | |
| errUnknown | 10 | Some other error occured. Please call someone if this happens |