Fixed isFinite exception
This commit is contained in:
parent
ff4f6ae432
commit
4e9df517ff
1 changed files with 15 additions and 17 deletions
|
|
@ -263,26 +263,21 @@ class _PanoramaState extends State<Panorama> with SingleTickerProviderStateMixin
|
||||||
}
|
}
|
||||||
|
|
||||||
Vector3 positionFromLatLon(double lat, double lon) {
|
Vector3 positionFromLatLon(double lat, double lon) {
|
||||||
if (scene != null) {
|
|
||||||
// generate a transform matrix
|
// generate a transform matrix
|
||||||
final Matrix4 m = scene.camera.projectionMatrix * scene.camera.lookAtMatrix * matrixFromLatLon(lat, lon);
|
final Matrix4 m = scene.camera.projectionMatrix * scene.camera.lookAtMatrix * matrixFromLatLon(lat, lon);
|
||||||
// apply transform
|
// apply transform
|
||||||
final Vector4 v = Vector4(0.0, 0.0, -_radius, 1.0)..applyMatrix4(m);
|
final Vector4 v = Vector4(0.0, 0.0, -_radius, 1.0)..applyMatrix4(m);
|
||||||
// transform homogeneous coordinates to NDC and remaps to the viewport
|
// transform homogeneous coordinates to NDC and remaps to the viewport
|
||||||
if (v.z >= 0.0)
|
|
||||||
return Vector3(
|
return Vector3(
|
||||||
(1.0 + v.x / v.w) * scene.camera.viewportWidth / 2,
|
(1.0 + v.x / v.w) * scene.camera.viewportWidth / 2,
|
||||||
(1.0 - v.y / v.w) * scene.camera.viewportHeight / 2,
|
(1.0 - v.y / v.w) * scene.camera.viewportHeight / 2,
|
||||||
v.z,
|
v.z,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
// make it invisible if not ready or hotspot is behind the camera
|
|
||||||
return Vector3.all(double.maxFinite);
|
|
||||||
}
|
|
||||||
|
|
||||||
Widget buildHotspotWidgets(List<Hotspot> hotspots) {
|
Widget buildHotspotWidgets(List<Hotspot> hotspots) {
|
||||||
final List<Widget> widgets = List<Widget>();
|
final List<Widget> widgets = List<Widget>();
|
||||||
if (hotspots != null) {
|
if (hotspots != null && scene != null) {
|
||||||
for (Hotspot hotspot in hotspots) {
|
for (Hotspot hotspot in hotspots) {
|
||||||
final Vector3 pos = positionFromLatLon(hotspot.latitude, hotspot.longitude);
|
final Vector3 pos = positionFromLatLon(hotspot.latitude, hotspot.longitude);
|
||||||
final Offset orgin = Offset(hotspot.width * hotspot.orgin.dx, hotspot.height * hotspot.orgin.dy);
|
final Offset orgin = Offset(hotspot.width * hotspot.orgin.dx, hotspot.height * hotspot.orgin.dy);
|
||||||
|
|
@ -295,8 +290,11 @@ class _PanoramaState extends State<Panorama> with SingleTickerProviderStateMixin
|
||||||
child: Transform(
|
child: Transform(
|
||||||
origin: orgin,
|
origin: orgin,
|
||||||
transform: transform..invert(),
|
transform: transform..invert(),
|
||||||
|
child: Offstage(
|
||||||
|
offstage: pos.z < 0,
|
||||||
child: hotspot.widget,
|
child: hotspot.widget,
|
||||||
),
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
widgets.add(child);
|
widgets.add(child);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue