| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /*
- * Copyright (c) 2012-2025 Daniele Bartolini et al.
- * SPDX-License-Identifier: GPL-3.0-or-later
- */
- using Gee;
- namespace Crown
- {
- [Compact]
- public struct Vector4
- {
- public double x;
- public double y;
- public double z;
- public double w;
- public Vector4(double x, double y, double z, double w)
- {
- this.x = x;
- this.y = y;
- this.z = z;
- this.w = w;
- }
- public Vector4.from_array(ArrayList<Value?> arr)
- {
- this.x = (double)arr[0];
- this.y = (double)arr[1];
- this.z = (double)arr[2];
- this.w = (double)arr[3];
- }
- public ArrayList<Value?> to_array()
- {
- ArrayList<Value?> arr = new ArrayList<Value?>();
- arr.add(this.x);
- arr.add(this.y);
- arr.add(this.z);
- arr.add(this.w);
- return arr;
- }
- public double dot(Vector4 b)
- {
- return this.x * b.x + this.y * b.y + this.z * b.z + this.w * b.w;
- }
- public double length_squared()
- {
- return dot(this);
- }
- public double length()
- {
- return Math.sqrt(length_squared());
- }
- public void normalize()
- {
- double len = length();
- double inv_len = 1.0 / len;
- this.x *= inv_len;
- this.y *= inv_len;
- this.z *= inv_len;
- this.w *= inv_len;
- }
- public void set_length(double len)
- {
- normalize();
- this.x *= len;
- this.y *= len;
- this.z *= len;
- this.w *= len;
- }
- public Vector3 to_vector3()
- {
- return Vector3(this.x, this.y, this.z);
- }
- public string to_string()
- {
- return "%f, %f, %f, %f".printf(x, y, z, w);
- }
- }
- public const Vector4 VECTOR4_ZERO = { 0.0, 0.0, 0.0, 0.0 };
- public const Vector4 VECTOR4_ONE = { 1.0, 1.0, 1.0, 1.0 };
- } /* namespace Crown */
|