Fixed bug in computation of inverse rotation of section. The bug manifested while manually translating an entity across a rotated section.

This commit is contained in:
Daan Vanden Bosch 2019-11-04 18:01:11 +01:00
parent 8212348a81
commit db9d15b78a

View File

@ -1,5 +1,5 @@
import { AreaVariantModel } from "./AreaVariantModel"; import { AreaVariantModel } from "./AreaVariantModel";
import { Euler, Vector3 } from "three"; import { Euler, Quaternion, Vector3 } from "three";
export class SectionModel { export class SectionModel {
readonly id: number; readonly id: number;
@ -18,7 +18,9 @@ export class SectionModel {
this.id = id; this.id = id;
this.position = position; this.position = position;
this.rotation = rotation; this.rotation = rotation;
this.inverse_rotation = rotation.clone().reorder("YXZ"); this.inverse_rotation = new Euler().setFromQuaternion(
new Quaternion().setFromEuler(rotation).inverse(),
);
this.area_variant = area_variant; this.area_variant = area_variant;
} }
} }