2013-05-31 22:01:01 +00:00
|
|
|
// Copyright 2013 The Lmath Developers. For a full listing of the authors,
|
|
|
|
// refer to the AUTHORS 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.
|
|
|
|
|
2012-11-01 23:14:07 +00:00
|
|
|
#[link(name = "lmath",
|
2013-03-29 22:54:05 +00:00
|
|
|
vers = "0.1.0",
|
2012-11-02 03:59:51 +00:00
|
|
|
uuid = "A2DEEB53-EB35-4B44-B247-9044B57E3BA5",
|
2012-11-01 01:59:53 +00:00
|
|
|
author = "Brendan Zabarauskas",
|
2012-11-06 04:03:14 +00:00
|
|
|
url = "https://github.com/bjz/lmath-rs")];
|
2012-09-07 10:48:47 +00:00
|
|
|
|
2013-06-16 07:34:09 +00:00
|
|
|
#[comment = "A mathematics library for computer graphics."];
|
2012-12-18 02:26:35 +00:00
|
|
|
#[license = "ASL2"];
|
2012-09-07 10:48:47 +00:00
|
|
|
#[crate_type = "lib"];
|
|
|
|
|
2013-07-12 06:32:12 +00:00
|
|
|
// Macros
|
|
|
|
|
2013-07-12 01:22:14 +00:00
|
|
|
mod macros;
|
2013-07-14 01:44:50 +00:00
|
|
|
#[path = "math/macros.rs"]
|
|
|
|
mod math_macros;
|
2013-07-12 06:32:12 +00:00
|
|
|
|
2013-07-14 01:44:50 +00:00
|
|
|
#[path = "math/math.rs"]
|
|
|
|
pub mod math;
|
2013-06-16 05:37:30 +00:00
|
|
|
|
2013-07-13 13:00:33 +00:00
|
|
|
#[cfg(bounds)]
|
|
|
|
#[path = "bounds/bounds.rs"]
|
|
|
|
pub mod bounds;
|
|
|
|
|
2013-07-11 01:11:43 +00:00
|
|
|
#[cfg(transform)]
|
|
|
|
#[path = "transform/transform.rs"]
|
|
|
|
pub mod transform;
|
2013-07-11 23:17:37 +00:00
|
|
|
|
|
|
|
#[cfg(space)]
|
|
|
|
#[path = "space/space.rs"]
|
|
|
|
pub mod space;
|