1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// "ami" - Aldaron's Memory Interface
//
// Copyright Douglas P. Lau 2017.
// Copyright Jeron A. Lau 2017 - 2018.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)

use std::fmt;

/// 4-dimensional vector
#[derive(Clone, Copy, PartialEq)]
pub struct Vec4 {
	/// X coordinate
	pub x: f32,
	/// Y coordinate
	pub y: f32,
	/// Z coordinate
	pub z: f32,
	/// W coordinate
	pub w: f32,
}

impl fmt::Debug for Vec4 {
	fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
		write!(f,"({},{},{},{})",self.x,self.y,self.z,self.w)
	}
}

#[allow(unused)]
impl Vec4 {
	/// Create a new Vec4
	pub fn new(x: f32, y: f32, z: f32, w: f32) -> Vec4 {
		Vec4 { x, y, z, w }
	}

	/// Find the minimum ordinal value
	pub(crate) fn min_p(self) -> f32 {
		self.x.min(self.y).min(self.z).min(self.w)
	}

	/// Find the maximum ordinal value
	pub(crate) fn max_p(self) -> f32 {
		self.x.max(self.y).max(self.z).max(self.w)
	}
}