1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- var t = require;
- var e = module;
- var i = exports;
- Object.defineProperty(i, "__esModule", {value: !0}),
- (i.default = class {
- constructor() {
- (this._value = 0), (this._f = 0), (this._g = 0), (this._h = 0), (this._parent = null);
- }
- toString() {
- return (
- "路点像素坐标:(" +
- this._px +
- "," +
- this._py +
- "), 路点世界坐标:(" +
- this._cx +
- "," +
- this._cy +
- "), 路点平面直角坐标:(" +
- this._dx +
- "," +
- this._dy +
- ")"
- );
- }
- get px() {
- return this._px;
- }
- set px(t) {
- this._px = t;
- }
- get py() {
- return this._py;
- }
- set py(t) {
- this._py = t;
- }
- get cx() {
- return this._cx;
- }
- set cx(t) {
- this._cx = t;
- }
- get cy() {
- return this._cy;
- }
- set cy(t) {
- this._cy = t;
- }
- get dx() {
- return this._dx;
- }
- set dx(t) {
- this._dx = t;
- }
- get dy() {
- return this._dy;
- }
- set dy(t) {
- this._dy = t;
- }
- get value() {
- return this._value;
- }
- set value(t) {
- this._value = t;
- }
- get f() {
- return this._f;
- }
- set f(t) {
- this._f = t;
- }
- get g() {
- return this._g;
- }
- set g(t) {
- this._g = t;
- }
- get h() {
- return this._h;
- }
- set h(t) {
- this._h = t;
- }
- get parent() {
- return this._parent;
- }
- set parent(t) {
- this._parent = t;
- }
- });
|