CartesianCoordinateSystem()

Returns always the same instance of CartesianCoordinateSystem in the context of an application.

Source

factory CartesianCoordinateSystem() {
  if (_instance == null) {
    _instance = new CartesianCoordinateSystem._internal();
  }
  return _instance;
}