Home
last modified time | relevance | path

Searched refs:VectorN (Results 1 – 2 of 2) sorted by relevance

/external/angle/src/common/
Dvector_utils.h38 using VectorN = Vector<Dimension, Type>;
56 static VectorN Load(const Type *source);
57 static void Store(const VectorN &source, Type *destination);
64 VectorN operator+() const;
65 VectorN operator-() const;
66 VectorN operator+(const VectorN &other) const;
67 VectorN operator-(const VectorN &other) const;
68 VectorN operator*(const VectorN &other) const;
69 VectorN operator/(const VectorN &other) const;
70 VectorN operator*(Type other) const;
[all …]
/external/skia/modules/canvaskit/npm_build/types/
Dindex.d.ts3510 add(a: VectorN, b: VectorN): VectorN;
3524 dist(a: VectorN, b: VectorN): number;
3531 dot(a: VectorN, b: VectorN): number;
3537 length(v: VectorN): number;
3543 lengthSquared(v: VectorN): number;
3550 mulScalar(v: VectorN, s: number): VectorN;
3556 normalize(v: VectorN): VectorN;
3563 sub(a: VectorN, b: VectorN): VectorN;
3661 export type VectorN = number[]; alias