MCPcopy Index your code
hub / github.com/microsoft/SandDance / equals

Method equals

docs/app/js/sanddance-app.js:75518–75521  ·  view source on GitHub ↗
(pose)

Source from the content-addressed store, hash-verified

75516 return this.orientation;
75517 }
75518 equals(pose) {
75519 if (!pose) return false;
75520 return this.position.equals(pose.position) && this.orientation.equals(pose.orientation);
75521 }
75522 exactEquals(pose) {
75523 if (!pose) return false;
75524 return this.position.exactEquals(pose.position) && this.orientation.exactEquals(pose.orientation);

Callers 5

equalsFunction · 0.45
constructorMethod · 0.45
sanddance-app.jsFile · 0.45
diffExtensionsFunction · 0.45
layoutGroupFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected