step-sequence-generator
Version:
A step sequence generator for figure skating programs
26 lines (25 loc) • 985 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Movement = void 0;
class Movement {
constructor(movement) {
this.id = movement.id;
this.name = movement.name;
this.transitionDirection = movement.transitionDirection;
this.rotationDirection = movement.rotationDirection;
this.rotationDegree = movement.rotationDegree;
this.startLeg = movement.startLeg;
this.endLeg = movement.endLeg;
this.isChangeLeg = movement.isChangeLeg;
this.startEdge = movement.startEdge;
this.endEdge = movement.endEdge;
this.isChangeEdge = movement.isChangeEdge;
this.isSpeedIncrease = movement.isSpeedIncrease;
this.isDifficult = movement.isDifficult;
this.type = movement.type;
this.description = movement.description;
this.absoluteName = movement.absoluteName;
this.distance = movement.distance;
}
}
exports.Movement = Movement;