mirror of
https://github.com/microsoft/Microsoft-3D-Movie-Maker.git
synced 2024-11-25 03:33:22 +01:00
31 lines
481 B
C
31 lines
481 B
C
/*
|
|
* Copyright (c) 1993-1995 by Argonaut Technologies Limited. All rights reserved.
|
|
*
|
|
* $Id: quat.h 1.5 1995/02/22 21:37:21 sam Exp $
|
|
* $Locker: $
|
|
*
|
|
* Type descibing a unit quaternion
|
|
*/
|
|
#ifndef _QUAT_H_
|
|
#define _QUAT_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct br_quat {
|
|
br_scalar x;
|
|
br_scalar y;
|
|
br_scalar z;
|
|
br_scalar w;
|
|
} br_quat;
|
|
|
|
#define BR_QUAT(x,y,z,w) {BR_SCALAR(x),BR_SCALAR(y),BR_SCALAR(z),BR_SCALAR(w)}
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
#endif
|
|
|
|
|