cgmath/src/array.rs

112 lines
3.7 KiB
Rust
Raw Normal View History

// Copyright 2013 The OMath Developers. For a full listing of the authors,
2015-03-14 02:49:46 +00:00
// refer to the Cargo.toml file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use std::mem;
use std::ptr;
2015-01-03 21:29:26 +00:00
use std::ops::*;
use num::PartialOrd;
/// An array containing elements of type `Element`
pub trait Array1 where
2015-11-03 04:40:52 +00:00
// FIXME: Ugly type signatures - blocked by rust-lang/rust#24092
Self: Index<usize, Output = <Self as Array1>::Element>,
Self: IndexMut<usize, Output = <Self as Array1>::Element>,
{
type Element: Copy;
/// Get the pointer to the first element of the array.
fn ptr<'a>(&'a self) -> &'a Self::Element {
2015-10-04 01:58:53 +00:00
&self[0]
}
/// Get a mutable pointer to the first element of the array.
fn mut_ptr<'a>(&'a mut self) -> &'a mut Self::Element {
2015-10-04 01:58:53 +00:00
&mut self[0]
}
2013-09-02 04:01:16 +00:00
/// Swap the elements at indices `i` and `j` in-place.
#[inline]
2015-01-09 23:16:39 +00:00
fn swap_elems(&mut self, i: usize, j: usize) {
// Yeah, ok borrow checker I know what I'm doing here
2015-10-04 01:58:53 +00:00
unsafe { ptr::swap(&mut self[i], &mut self[j]) };
}
2014-05-25 01:22:23 +00:00
/// Replace an element in the array.
#[inline]
fn replace_elem(&mut self, i: usize, src: Self::Element) -> Self::Element {
2015-10-04 01:58:53 +00:00
mem::replace(&mut self[i], src)
}
/// The sum of the elements of the array.
fn sum(self) -> Self::Element where Self::Element: Add<Output = <Self as Array1>::Element>;
/// The product of the elements of the array.
fn product(self) -> Self::Element where Self::Element: Mul<Output = <Self as Array1>::Element>;
/// The minimum element of the array.
fn min(self) -> Self::Element where Self::Element: PartialOrd;
/// The maximum element of the array.
fn max(self) -> Self::Element where Self::Element: PartialOrd;
}
2014-05-25 01:22:23 +00:00
/// A column-major array
pub trait Array2 where
2015-11-03 04:40:52 +00:00
// FIXME: Ugly type signatures - blocked by rust-lang/rust#24092
Self: Index<usize, Output = <Self as Array2>::Column>,
Self: IndexMut<usize, Output = <Self as Array2>::Column>,
{
type Element: Copy;
type Column: Array1<Element = Self::Element>;
type Row: Array1<Element = Self::Element>;
/// Get the pointer to the first element of the array.
fn ptr<'a>(&'a self) -> &'a Self::Element {
2015-10-04 01:58:53 +00:00
&self[0][0]
}
2014-05-25 01:22:23 +00:00
/// Get a mutable pointer to the first element of the array.
fn mut_ptr<'a>(&'a mut self) -> &'a mut Self::Element {
2015-10-04 01:58:53 +00:00
&mut self[0][0]
}
2014-05-25 01:22:23 +00:00
/// Swap two columns of this array.
#[inline]
2015-01-09 23:16:39 +00:00
fn swap_cols(&mut self, a: usize, b: usize) {
2015-10-04 01:58:53 +00:00
unsafe { ptr::swap(&mut self[a], &mut self[b]) };
}
/// Replace a column in the array.
#[inline]
fn replace_col(&mut self, c: usize, src: Self::Column) -> Self::Column {
2015-10-04 01:58:53 +00:00
mem::replace(&mut self[c], src)
}
/// Get a row from this array by-value.
fn row(&self, r: usize) -> Self::Row;
/// Swap two rows of this array.
2015-01-09 23:16:39 +00:00
fn swap_rows(&mut self, a: usize, b: usize);
/// Swap the values at index `a` and `b`
#[inline]
2015-01-09 23:16:39 +00:00
fn swap_elems(&mut self, a: (usize, usize), b: (usize, usize)) {
let (ac, ar) = a;
let (bc, br) = b;
2015-10-04 01:58:53 +00:00
unsafe { ptr::swap(&mut self[ac][ar], &mut self[bc][br]) };
}
}