You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Below code snippet works in early cesium version, however the 3dtile disappear in cesiumjs 1.66, how to rotate 3dtile in new version? thands in advance for any clues.
var m = tileset.modelMatrix;
var m1 = Cesium.Matrix3.fromRotationX(Cesium.Math.toRadians(rotateXAngle));
Cesium.Matrix4.multiplyByMatrix3(modelMatrix, m1, modelMatrix);
tileset.modelMatrix = m;
The text was updated successfully, but these errors were encountered:
Hi experts,
Below code snippet works in early cesium version, however the 3dtile disappear in cesiumjs 1.66, how to rotate 3dtile in new version? thands in advance for any clues.
var m = tileset.modelMatrix;
var m1 = Cesium.Matrix3.fromRotationX(Cesium.Math.toRadians(rotateXAngle));
Cesium.Matrix4.multiplyByMatrix3(modelMatrix, m1, modelMatrix);
tileset.modelMatrix = m;
The text was updated successfully, but these errors were encountered: