UArFrame constructor

const UArFrame({
  1. double timestamp = 0,
  2. UArPose camera = UArPose.identity,
  3. double fov = 60,
  4. UArLightEstimate? light,
  5. UArGeoPose? geo,
  6. UArHitResult? centerHit,
  7. double? northYaw,
  8. double? heading,
  9. double? headingAccuracy,
  10. Map<String, double> semantics = const <String, double>{},
  11. Map<String, UArProjection> projections = const <String, UArProjection>{},
})

Implementation

const UArFrame({
  this.timestamp = 0,
  this.camera = UArPose.identity,
  this.fov = 60,
  this.light,
  this.geo,
  this.centerHit,
  this.northYaw,
  this.heading,
  this.headingAccuracy,
  this.semantics = const <String, double>{},
  this.projections = const <String, UArProjection>{},
});