@awayfl/awayfl-player
Version:
Flash Player emulator for executing SWF files (published for FP versions 6 and up) in javascript
15 lines (13 loc) • 306 B
text/typescript
import { b2Vec2 } from '../Common/Math';
import { b2ContactID } from './b2ContactID';
/**
* @private
*/
export class ClipVertex {
public Set(other: ClipVertex): void {
this.v.SetV(other.v);
this.id.Set(other.id);
}
public v: b2Vec2 = new b2Vec2();
public id: b2ContactID = new b2ContactID();
}