WarpTwin
Documentation for WarpTwin models and classes.
Loading...
Searching...
No Matches
mathconstants.h
Go to the documentation of this file.
1/******************************************************************************
2* Copyright (c) ATTX INC 2025. All Rights Reserved.
3*
4* This software and associated documentation (the "Software") are the
5* proprietary and confidential information of ATTX, INC. The Software is
6* furnished under a license agreement between ATTX and the user organization
7* and may be used or copied only in accordance with the terms of the agreement.
8* Refer to 'license/attx_license.adoc' for standard license terms.
9*
10* EXPORT CONTROL NOTICE: THIS SOFTWARE MAY INCLUDE CONTENT CONTROLLED UNDER THE
11* INTERNATIONAL TRAFFIC IN ARMS REGULATIONS (ITAR) OR THE EXPORT ADMINISTRATION
12* REGULATIONS (EAR99). No part of the Software may be used, reproduced, or
13* transmitted in any form or by any means, for any purpose, without the express
14* written permission of ATTX, INC.
15******************************************************************************/
16/*
17Contains helpful math constants for matrix and other derived math.
18*/
19#include "core/Matrix.hpp"
20#include "core/mathmacros.h"
21
22#ifndef CONSTANTS_MATH_CONSTANTS_H
23#define CONSTANTS_MATH_CONSTANTS_H
24
26 {1.0, 0.0, 0.0},
27 {0.0, 1.0, 0.0},
28 {0.0, 0.0, 1.0}
29});
30
31#endif
Matrix math implementation.
Definition Matrix.hpp:55
const clockwerk::Matrix< 3, 3 > IDENTITY_3_3({ {1.0, 0.0, 0.0}, {0.0, 1.0, 0.0}, {0.0, 0.0, 1.0} })