SatelliteRenderData constructor

SatelliteRenderData({
  1. required String id,
  2. required Offset position2D,
  3. required double depth,
  4. required bool isVisible,
  5. required Satellite satellite,
  6. required GlobeCoordinates currentPosition,
  7. double transitionProgress = 1.0,
  8. double normalX = 1.0,
  9. double normalY = 0.0,
  10. double normalZ = 0.0,
  11. double tiltAngle = 0.0,
  12. List<Offset>? orbitPath2D,
  13. List<bool>? orbitPathVisible,
})

Implementation

SatelliteRenderData({
  required this.id,
  required this.position2D,
  required this.depth,
  required this.isVisible,
  required this.satellite,
  required this.currentPosition,
  this.transitionProgress = 1.0,
  this.normalX = 1.0,
  this.normalY = 0.0,
  this.normalZ = 0.0,
  this.tiltAngle = 0.0,
  this.orbitPath2D,
  this.orbitPathVisible,
});