public class Sphere1D extends Object implements Serializable, Space
We use here the topologists definition of the 1-sphere (see Sphere on MathWorld), i.e. the 1-sphere is the one-dimensional closed curve defined in 2D as x2+y2=1.
| Modifier and Type | Class and Description | 
|---|---|
| static class  | Sphere1D.NoSubSpaceExceptionSpecialized exception for inexistent sub-space. | 
| Modifier and Type | Field and Description | 
|---|---|
| static double | SMALLEST_TOLERANCESmallest tolerance that can be managed. | 
| Modifier and Type | Method and Description | 
|---|---|
| static void | checkTolerance(double tolerance)Check tolerance against  SMALLEST_TOLERANCE. | 
| int | getDimension()Get the dimension of the space. | 
| static Sphere1D | getInstance()Get the unique instance. | 
| Space | getSubSpace()Get the n-1 dimension subspace of this space. | 
public static final double SMALLEST_TOLERANCE
Tolerances smaller than this value will generate exceptions.
public static Sphere1D getInstance()
public static void checkTolerance(double tolerance)
                           throws MathIllegalArgumentException
SMALLEST_TOLERANCE.tolerance - tolerance to checkMathIllegalArgumentException - if tolerance is smaller
 than SMALLEST_TOLERANCEpublic int getDimension()
getDimension in interface Spacepublic Space getSubSpace() throws Sphere1D.NoSubSpaceException
 As the 1-dimension sphere does not have proper sub-spaces,
 this method always throws a Sphere1D.NoSubSpaceException
 
getSubSpace in interface SpaceSphere1D.NoSubSpaceException - in all casesSpace.getDimension()Copyright © 2016–2020 Hipparchus.org. All rights reserved.