|
Revision 147, 0.8 kB
(checked in by baxissimo, 5 years ago)
|
Pulled the implementations of these out into a separate mini-library.
|
| Line | |
|---|
| 1 |
/*========================================================================== |
|---|
| 2 |
* MatrixT.d |
|---|
| 3 |
* Written in the D Programming Language (http://www.digitalmars.com/d) |
|---|
| 4 |
*/ |
|---|
| 5 |
/*************************************************************************** |
|---|
| 6 |
* Fixed size matrix class (value type) |
|---|
| 7 |
* |
|---|
| 8 |
* The number of rows and columns is fixed at compile time. |
|---|
| 9 |
* Storage is column major like FORTRAN or OpenGL. |
|---|
| 10 |
* |
|---|
| 11 |
* Authors: William V. Baxter III (OLM Digital, Inc.) |
|---|
| 12 |
* Date: 23 Nov 2007 |
|---|
| 13 |
* Copyright: (C) 2007-2008 William Baxter, OLM Digital, Inc. |
|---|
| 14 |
* License: ZLIB/LIBPNG |
|---|
| 15 |
*/ |
|---|
| 16 |
//=========================================================================== |
|---|
| 17 |
|
|---|
| 18 |
module OpenMesh.Core.Geometry.MatrixT; |
|---|
| 19 |
|
|---|
| 20 |
public import linalg.MatrixT; |
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
//--- Emacs setup --- |
|---|
| 24 |
// Local Variables: |
|---|
| 25 |
// c-basic-offset: 4 |
|---|
| 26 |
// indent-tabs-mode: nil |
|---|
| 27 |
// End: |
|---|