mirror of
https://github.com/zeldaret/ss
synced 2026-06-19 15:40:26 -04:00
cec09ad023
* g3d Headers * initial g3d source files -- NOT YET FIXED * change ResFile static_cast to explicit ctor
27 lines
462 B
C++
27 lines
462 B
C++
#ifndef NW4R_G3D_BASIC_H
|
|
#define NW4R_G3D_BASIC_H
|
|
#include <nw4r/types_nw4r.h>
|
|
|
|
#include <nw4r/math.h>
|
|
|
|
namespace nw4r {
|
|
namespace g3d {
|
|
|
|
// Forward declarations
|
|
struct ChrAnmResult;
|
|
|
|
namespace detail {
|
|
namespace dcc {
|
|
|
|
u32 CalcWorldMtx_Basic(
|
|
math::MTX34 *pW, math::VEC3 *pS, const math::MTX34 *pW1, const math::VEC3 *pS1, u32 attr,
|
|
const ChrAnmResult *pResult
|
|
);
|
|
|
|
} // namespace dcc
|
|
} // namespace detail
|
|
} // namespace g3d
|
|
} // namespace nw4r
|
|
|
|
#endif
|