PointRenderData constructor

PointRenderData({
  1. required String id,
  2. required Offset position2D,
  3. required double depth,
  4. required bool isVisible,
  5. required Point point,
  6. double transitionProgress = 1.0,
  7. double normalX = 1.0,
  8. double normalY = 0.0,
  9. double normalZ = 0.0,
  10. double tiltAngle = 0.0,
})

Implementation

PointRenderData({
  required this.id,
  required this.position2D,
  required this.depth,
  required this.isVisible,
  required this.point,
  this.transitionProgress = 1.0,
  this.normalX = 1.0,
  this.normalY = 0.0,
  this.normalZ = 0.0,
  this.tiltAngle = 0.0,
});