#region --- License ---
/*
Copyright (c) 2006 - 2008 The Open Toolkit library.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#endregion
using System;
using System.Runtime.InteropServices;
namespace OpenTK
{
/// Represents a 3D vector using three 32-bit unsigned integer values.
///
/// The Vector3ui structure is suitable for interoperation with unmanaged code requiring three consecutive unsigned integers.
///
[Serializable]
public struct Vector3ui : IEquatable
{
#region Fields
///
/// The X component of the Vector3ui.
///
public uint X;
///
/// The Y component of the Vector3ui.
///
public uint Y;
///
/// The Z component of the Vector3ui.
///
public uint Z;
#endregion
#region Constructors
///
/// Constructs a new Vector3ui.
///
/// The x coordinate of the net Vector3ui.
/// The y coordinate of the net Vector3ui.
/// The z coordinate of the net Vector3ui.
public Vector3ui(uint x, uint y, uint z)
{
X = x;
Y = y;
Z = z;
}
#endregion
#region Public Members
#region Static
#region Fields
///
/// Defines a unit-length Vector3ui that points towards the X-axis.
///
public static readonly Vector3ui UnitX = new Vector3ui(1, 0, 0);
///
/// Defines a unit-length Vector3ui that points towards the Y-axis.
///
public static readonly Vector3ui UnitY = new Vector3ui(0, 1, 0);
///
/// Defines a unit-length Vector3ui that points towards the Z-axis.
///
public static readonly Vector3ui UnitZ = new Vector3ui(0, 0, 1);
///
/// Defines a zero-length Vector3ui.
///
public static readonly Vector3ui Zero = new Vector3ui(0, 0, 0);
///
/// Defines an instance with all components set to 1.
///
public static readonly Vector3ui One = new Vector3ui(1, 1, 1);
///
/// Defines the size of the Vector3ui struct in bytes.
///
public static readonly int SizeInBytes = Marshal.SizeOf(new Vector3ui());
#endregion
#region Add
///
/// Adds two vectors.
///
/// Left operand.
/// Right operand.
/// Result of operation.
public static Vector3ui Add(Vector3ui a, Vector3ui b)
{
Add(ref a, ref b, out a);
return a;
}
///
/// Adds two vectors.
///
/// Left operand.
/// Right operand.
/// Result of operation.
public static void Add(ref Vector3ui a, ref Vector3ui b, out Vector3ui result)
{
result = new Vector3ui(a.X + b.X, a.Y + b.Y, a.Z + b.Z);
}
#endregion
#region Subtract
///
/// Subtract one Vector from another
///
/// First operand
/// Second operand
/// Result of subtraction
public static Vector3ui Subtract(Vector3ui a, Vector3ui b)
{
Subtract(ref a, ref b, out a);
return a;
}
///
/// Subtract one Vector from another
///
/// First operand
/// Second operand
/// Result of subtraction
public static void Subtract(ref Vector3ui a, ref Vector3ui b, out Vector3ui result)
{
result = new Vector3ui(a.X - b.X, a.Y - b.Y, a.Z - b.Z);
}
#endregion
#region ComponentMin
///
/// Calculate the component-wise minimum of two vectors
///
/// First operand
/// Second operand
/// The component-wise minimum
public static Vector3ui ComponentMin(Vector3ui a, Vector3ui b)
{
a.X = a.X < b.X ? a.X : b.X;
a.Y = a.Y < b.Y ? a.Y : b.Y;
a.Z = a.Z < b.Z ? a.Z : b.Z;
return a;
}
///
/// Calculate the component-wise minimum of two vectors
///
/// First operand
/// Second operand
/// The component-wise minimum
public static void ComponentMin(ref Vector3ui a, ref Vector3ui b, out Vector3ui result)
{
result.X = a.X < b.X ? a.X : b.X;
result.Y = a.Y < b.Y ? a.Y : b.Y;
result.Z = a.Z < b.Z ? a.Z : b.Z;
}
#endregion
#region ComponentMax
///
/// Calculate the component-wise maximum of two vectors
///
/// First operand
/// Second operand
/// The component-wise maximum
public static Vector3ui ComponentMax(Vector3ui a, Vector3ui b)
{
a.X = a.X > b.X ? a.X : b.X;
a.Y = a.Y > b.Y ? a.Y : b.Y;
a.Z = a.Z > b.Z ? a.Z : b.Z;
return a;
}
///
/// Calculate the component-wise maximum of two vectors
///
/// First operand
/// Second operand
/// The component-wise maximum
public static void ComponentMax(ref Vector3ui a, ref Vector3ui b, out Vector3ui result)
{
result.X = a.X > b.X ? a.X : b.X;
result.Y = a.Y > b.Y ? a.Y : b.Y;
result.Z = a.Z > b.Z ? a.Z : b.Z;
}
#endregion
#region Clamp
///
/// Clamp a vector to the given minimum and maximum vectors
///
/// Input vector
/// Minimum vector
/// Maximum vector
/// The clamped vector
public static Vector3ui Clamp(Vector3ui vec, Vector3ui min, Vector3ui max)
{
vec.X = vec.X < min.X ? min.X : vec.X > max.X ? max.X : vec.X;
vec.Y = vec.Y < min.Y ? min.Y : vec.Y > max.Y ? max.Y : vec.Y;
vec.Z = vec.Z < min.Z ? min.Z : vec.Z > max.Z ? max.Z : vec.Z;
return vec;
}
///
/// Clamp a vector to the given minimum and maximum vectors
///
/// Input vector
/// Minimum vector
/// Maximum vector
/// The clamped vector
public static void Clamp(ref Vector3ui vec, ref Vector3ui min, ref Vector3ui max, out Vector3ui result)
{
result.X = vec.X < min.X ? min.X : vec.X > max.X ? max.X : vec.X;
result.Y = vec.Y < min.Y ? min.Y : vec.Y > max.Y ? max.Y : vec.Y;
result.Z = vec.Z < min.Z ? min.Z : vec.Z > max.Z ? max.Z : vec.Z;
}
#endregion
#endregion
#region Operators
///
/// Adds the specified instances.
///
/// Left operand.
/// Right operand.
/// Result of addition.
public static Vector3ui operator +(Vector3ui left, Vector3ui right)
{
left.X += right.X;
left.Y += right.Y;
left.Z += right.Z;
return left;
}
///
/// Subtracts the specified instances.
///
/// Left operand.
/// Right operand.
/// Result of subtraction.
public static Vector3ui operator -(Vector3ui left, Vector3ui right)
{
left.X -= right.X;
left.Y -= right.Y;
left.Z -= right.Z;
return left;
}
///
/// Compares the specified instances for equality.
///
/// Left operand.
/// Right operand.
/// True if both instances are equal; false otherwise.
public static bool operator ==(Vector3ui left, Vector3ui right)
{
return left.Equals(right);
}
///
/// Compares the specified instances for inequality.
///
/// Left operand.
/// Right operand.
/// True if both instances are not equal; false otherwise.
public static bool operator !=(Vector3ui left, Vector3ui right)
{
return !left.Equals(right);
}
#endregion
#region Overrides
#region public override string ToString()
///
/// Returns a System.String that represents the current Vector3ui.
///
///
public override string ToString()
{
return String.Format("({0}, {1}, {2})", X, Y, Z);
}
#endregion
#region public override int GetHashCode()
///
/// Returns the hashcode for this instance.
///
/// A System.Int32 containing the unique hashcode for this instance.
public override int GetHashCode()
{
return X.GetHashCode() ^ Y.GetHashCode() ^ Z.GetHashCode();
}
#endregion
#region public override bool Equals(object obj)
///
/// Indicates whether this instance and a specified object are equal.
///
/// The object to compare to.
/// True if the instances are equal; false otherwise.
public override bool Equals(object obj)
{
if (!(obj is Vector3ui))
return false;
return this.Equals((Vector3ui)obj);
}
#endregion
#endregion
#endregion
#region IEquatable Members
/// Indicates whether the current vector is equal to another vector.
/// A vector to compare with this vector.
/// true if the current vector is equal to the vector parameter; otherwise, false.
public bool Equals(Vector3ui other)
{
return
X == other.X &&
Y == other.Y &&
Z == other.Z;
}
#endregion
}
}