UNPKG

@playcanvas/pcui-graph

Version:

A PCUI plugin for creating node-based graphs

451 lines (450 loc) 14.1 kB
/** * A 2-dimensional vector. * * @ignore */ export class Vec2 { /** * Calculates the angle between two Vec2's in radians. * * @param {Vec2} lhs - The first vector operand for the calculation. * @param {Vec2} rhs - The second vector operand for the calculation. * @returns {number} The calculated angle in radians. * @ignore */ static angleRad(lhs: Vec2, rhs: Vec2): number; /** * A constant vector set to [0, 0]. * * @type {Vec2} * @readonly */ static readonly ZERO: Vec2; /** * A constant vector set to [1, 1]. * * @type {Vec2} * @readonly */ static readonly ONE: Vec2; /** * A constant vector set to [0, 1]. * * @type {Vec2} * @readonly */ static readonly UP: Vec2; /** * A constant vector set to [0, -1]. * * @type {Vec2} * @readonly */ static readonly DOWN: Vec2; /** * A constant vector set to [1, 0]. * * @type {Vec2} * @readonly */ static readonly RIGHT: Vec2; /** * A constant vector set to [-1, 0]. * * @type {Vec2} * @readonly */ static readonly LEFT: Vec2; /** * Create a new Vec2 instance. * * @param {number|number[]} [x] - The x value. Defaults to 0. If x is an array of length 2, the * array will be used to populate all components. * @param {number} [y] - The y value. Defaults to 0. * @example * var v = new pc.Vec2(1, 2); */ constructor(x?: number | number[], y?: number); /** * The first component of the vector. * * @type {number} */ x: number; /** * The second component of the vector. * * @type {number} */ y: number; /** * Adds a 2-dimensional vector to another in place. * * @param {Vec2} rhs - The vector to add to the specified vector. * @returns {Vec2} Self for chaining. * @example * var a = new pc.Vec2(10, 10); * var b = new pc.Vec2(20, 20); * * a.add(b); * * // Outputs [30, 30] * console.log("The result of the addition is: " + a.toString()); */ add(rhs: Vec2): Vec2; /** * Adds two 2-dimensional vectors together and returns the result. * * @param {Vec2} lhs - The first vector operand for the addition. * @param {Vec2} rhs - The second vector operand for the addition. * @returns {Vec2} Self for chaining. * @example * var a = new pc.Vec2(10, 10); * var b = new pc.Vec2(20, 20); * var r = new pc.Vec2(); * * r.add2(a, b); * // Outputs [30, 30] * * console.log("The result of the addition is: " + r.toString()); */ add2(lhs: Vec2, rhs: Vec2): Vec2; /** * Adds a number to each element of a vector. * * @param {number} scalar - The number to add. * @returns {Vec2} Self for chaining. * @example * var vec = new pc.Vec2(3, 4); * * vec.addScalar(2); * * // Outputs [5, 6] * console.log("The result of the addition is: " + vec.toString()); */ addScalar(scalar: number): Vec2; /** * Returns an identical copy of the specified 2-dimensional vector. * * @returns {Vec2} A 2-dimensional vector containing the result of the cloning. * @example * var v = new pc.Vec2(10, 20); * var vclone = v.clone(); * console.log("The result of the cloning is: " + vclone.toString()); */ clone(): Vec2; /** * Copies the contents of a source 2-dimensional vector to a destination 2-dimensional vector. * * @param {Vec2} rhs - A vector to copy to the specified vector. * @returns {Vec2} Self for chaining. * @example * var src = new pc.Vec2(10, 20); * var dst = new pc.Vec2(); * * dst.copy(src); * * console.log("The two vectors are " + (dst.equals(src) ? "equal" : "different")); */ copy(rhs: Vec2): Vec2; /** * Returns the result of a cross product operation performed on the two specified 2-dimensional * vectors. * * @param {Vec2} rhs - The second 2-dimensional vector operand of the cross product. * @returns {number} The cross product of the two vectors. * @example * var right = new pc.Vec2(1, 0); * var up = new pc.Vec2(0, 1); * var crossProduct = right.cross(up); * * // Prints 1 * console.log("The result of the cross product is: " + crossProduct); */ cross(rhs: Vec2): number; /** * Returns the distance between the two specified 2-dimensional vectors. * * @param {Vec2} rhs - The second 2-dimensional vector to test. * @returns {number} The distance between the two vectors. * @example * var v1 = new pc.Vec2(5, 10); * var v2 = new pc.Vec2(10, 20); * var d = v1.distance(v2); * console.log("The distance between v1 and v2 is: " + d); */ distance(rhs: Vec2): number; /** * Divides a 2-dimensional vector by another in place. * * @param {Vec2} rhs - The vector to divide the specified vector by. * @returns {Vec2} Self for chaining. * @example * var a = new pc.Vec2(4, 9); * var b = new pc.Vec2(2, 3); * * a.div(b); * * // Outputs [2, 3] * console.log("The result of the division is: " + a.toString()); */ div(rhs: Vec2): Vec2; /** * Divides one 2-dimensional vector by another and writes the result to the specified vector. * * @param {Vec2} lhs - The dividend vector (the vector being divided). * @param {Vec2} rhs - The divisor vector (the vector dividing the dividend). * @returns {Vec2} Self for chaining. * @example * var a = new pc.Vec2(4, 9); * var b = new pc.Vec2(2, 3); * var r = new pc.Vec2(); * * r.div2(a, b); * // Outputs [2, 3] * * console.log("The result of the division is: " + r.toString()); */ div2(lhs: Vec2, rhs: Vec2): Vec2; /** * Divides each element of a vector by a number. * * @param {number} scalar - The number to divide by. * @returns {Vec2} Self for chaining. * @example * var vec = new pc.Vec2(3, 6); * * vec.divScalar(3); * * // Outputs [1, 2] * console.log("The result of the division is: " + vec.toString()); */ divScalar(scalar: number): Vec2; /** * Returns the result of a dot product operation performed on the two specified 2-dimensional * vectors. * * @param {Vec2} rhs - The second 2-dimensional vector operand of the dot product. * @returns {number} The result of the dot product operation. * @example * var v1 = new pc.Vec2(5, 10); * var v2 = new pc.Vec2(10, 20); * var v1dotv2 = v1.dot(v2); * console.log("The result of the dot product is: " + v1dotv2); */ dot(rhs: Vec2): number; /** * Reports whether two vectors are equal. * * @param {Vec2} rhs - The vector to compare to the specified vector. * @returns {boolean} True if the vectors are equal and false otherwise. * @example * var a = new pc.Vec2(1, 2); * var b = new pc.Vec2(4, 5); * console.log("The two vectors are " + (a.equals(b) ? "equal" : "different")); */ equals(rhs: Vec2): boolean; /** * Returns the magnitude of the specified 2-dimensional vector. * * @returns {number} The magnitude of the specified 2-dimensional vector. * @example * var vec = new pc.Vec2(3, 4); * var len = vec.length(); * // Outputs 5 * console.log("The length of the vector is: " + len); */ length(): number; /** * Returns the magnitude squared of the specified 2-dimensional vector. * * @returns {number} The magnitude of the specified 2-dimensional vector. * @example * var vec = new pc.Vec2(3, 4); * var len = vec.lengthSq(); * // Outputs 25 * console.log("The length squared of the vector is: " + len); */ lengthSq(): number; /** * Returns the result of a linear interpolation between two specified 2-dimensional vectors. * * @param {Vec2} lhs - The 2-dimensional to interpolate from. * @param {Vec2} rhs - The 2-dimensional to interpolate to. * @param {number} alpha - The value controlling the point of interpolation. Between 0 and 1, * the linear interpolant will occur on a straight line between lhs and rhs. Outside of this * range, the linear interpolant will occur on a ray extrapolated from this line. * @returns {Vec2} Self for chaining. * @example * var a = new pc.Vec2(0, 0); * var b = new pc.Vec2(10, 10); * var r = new pc.Vec2(); * * r.lerp(a, b, 0); // r is equal to a * r.lerp(a, b, 0.5); // r is 5, 5 * r.lerp(a, b, 1); // r is equal to b */ lerp(lhs: Vec2, rhs: Vec2, alpha: number): Vec2; /** * Multiplies a 2-dimensional vector to another in place. * * @param {Vec2} rhs - The 2-dimensional vector used as the second multiplicand of the operation. * @returns {Vec2} Self for chaining. * @example * var a = new pc.Vec2(2, 3); * var b = new pc.Vec2(4, 5); * * a.mul(b); * * // Outputs 8, 15 * console.log("The result of the multiplication is: " + a.toString()); */ mul(rhs: Vec2): Vec2; /** * Returns the result of multiplying the specified 2-dimensional vectors together. * * @param {Vec2} lhs - The 2-dimensional vector used as the first multiplicand of the operation. * @param {Vec2} rhs - The 2-dimensional vector used as the second multiplicand of the operation. * @returns {Vec2} Self for chaining. * @example * var a = new pc.Vec2(2, 3); * var b = new pc.Vec2(4, 5); * var r = new pc.Vec2(); * * r.mul2(a, b); * * // Outputs 8, 15 * console.log("The result of the multiplication is: " + r.toString()); */ mul2(lhs: Vec2, rhs: Vec2): Vec2; /** * Multiplies each element of a vector by a number. * * @param {number} scalar - The number to multiply by. * @returns {Vec2} Self for chaining. * @example * var vec = new pc.Vec2(3, 6); * * vec.mulScalar(3); * * // Outputs [9, 18] * console.log("The result of the multiplication is: " + vec.toString()); */ mulScalar(scalar: number): Vec2; /** * Returns this 2-dimensional vector converted to a unit vector in place. If the vector has a * length of zero, the vector's elements will be set to zero. * * @returns {Vec2} Self for chaining. * @example * var v = new pc.Vec2(25, 0); * * v.normalize(); * * // Outputs 1, 0 * console.log("The result of the vector normalization is: " + v.toString()); */ normalize(): Vec2; /** * Each element is set to the largest integer less than or equal to its value. * * @returns {Vec2} Self for chaining. */ floor(): Vec2; /** * Each element is rounded up to the next largest integer. * * @returns {Vec2} Self for chaining. */ ceil(): Vec2; /** * Each element is rounded up or down to the nearest integer. * * @returns {Vec2} Self for chaining. */ round(): Vec2; /** * Each element is assigned a value from rhs parameter if it is smaller. * * @param {Vec2} rhs - The 2-dimensional vector used as the source of elements to compare to. * @returns {Vec2} Self for chaining. */ min(rhs: Vec2): Vec2; /** * Each element is assigned a value from rhs parameter if it is larger. * * @param {Vec2} rhs - The 2-dimensional vector used as the source of elements to compare to. * @returns {Vec2} Self for chaining. */ max(rhs: Vec2): Vec2; /** * Sets the specified 2-dimensional vector to the supplied numerical values. * * @param {number} x - The value to set on the first component of the vector. * @param {number} y - The value to set on the second component of the vector. * @returns {Vec2} Self for chaining. * @example * var v = new pc.Vec2(); * v.set(5, 10); * * // Outputs 5, 10 * console.log("The result of the vector set is: " + v.toString()); */ set(x: number, y: number): Vec2; /** * Subtracts a 2-dimensional vector from another in place. * * @param {Vec2} rhs - The vector to add to the specified vector. * @returns {Vec2} Self for chaining. * @example * var a = new pc.Vec2(10, 10); * var b = new pc.Vec2(20, 20); * * a.sub(b); * * // Outputs [-10, -10] * console.log("The result of the subtraction is: " + a.toString()); */ sub(rhs: Vec2): Vec2; /** * Subtracts two 2-dimensional vectors from one another and returns the result. * * @param {Vec2} lhs - The first vector operand for the addition. * @param {Vec2} rhs - The second vector operand for the addition. * @returns {Vec2} Self for chaining. * @example * var a = new pc.Vec2(10, 10); * var b = new pc.Vec2(20, 20); * var r = new pc.Vec2(); * * r.sub2(a, b); * * // Outputs [-10, -10] * console.log("The result of the subtraction is: " + r.toString()); */ sub2(lhs: Vec2, rhs: Vec2): Vec2; /** * Subtracts a number from each element of a vector. * * @param {number} scalar - The number to subtract. * @returns {Vec2} Self for chaining. * @example * var vec = new pc.Vec2(3, 4); * * vec.subScalar(2); * * // Outputs [1, 2] * console.log("The result of the subtraction is: " + vec.toString()); */ subScalar(scalar: number): Vec2; /** * Converts the vector to string form. * * @returns {string} The vector in string form. * @example * var v = new pc.Vec2(20, 10); * // Outputs [20, 10] * console.log(v.toString()); */ toString(): string; }