2019-05-18 10:39:39 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* *
|
2020-08-02 16:49:12 +00:00
|
|
|
* Module : *
|
2019-05-18 10:39:39 +00:00
|
|
|
* *
|
2020-08-02 16:49:12 +00:00
|
|
|
* Purpose : *
|
2019-05-18 10:39:39 +00:00
|
|
|
* *
|
|
|
|
**************************************************************************/
|
|
|
|
|
2020-08-02 16:49:12 +00:00
|
|
|
/* RWPUBLIC */
|
|
|
|
|
|
|
|
#ifndef RTSKINSP_H
|
|
|
|
#define RTSKINSP_H
|
2019-05-18 10:39:39 +00:00
|
|
|
|
|
|
|
/**
|
2020-08-02 16:49:12 +00:00
|
|
|
* \defgroup rtskinsplit RtSkinSplit
|
|
|
|
* \ingroup skinning
|
2019-05-18 10:39:39 +00:00
|
|
|
*
|
2020-08-02 16:49:12 +00:00
|
|
|
* Skin Splitting Toolkit for RenderWare Graphics.
|
2019-05-18 10:39:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
Includes
|
|
|
|
*/
|
2020-08-02 16:49:12 +00:00
|
|
|
#include <rwcore.h>
|
|
|
|
#include <rpworld.h>
|
2019-05-18 10:39:39 +00:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
Defines
|
|
|
|
*/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
Global Types
|
|
|
|
*/
|
|
|
|
|
2020-08-02 16:49:12 +00:00
|
|
|
/****************************************************************************
|
|
|
|
Global variables (across program)
|
|
|
|
*/
|
|
|
|
|
2019-05-18 10:39:39 +00:00
|
|
|
/****************************************************************************
|
|
|
|
Function prototypes
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
2020-08-02 16:49:12 +00:00
|
|
|
#endif /* __cpluscplus */
|
2019-05-18 10:39:39 +00:00
|
|
|
|
2020-08-02 16:49:12 +00:00
|
|
|
extern RpAtomic *
|
|
|
|
RtSkinSplitAtomicSplitGeometry( RpAtomic *atomic, RwUInt32 boneLimit );
|
2019-05-18 10:39:39 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2020-08-02 16:49:12 +00:00
|
|
|
#endif /* __cplusplus */
|
2019-05-18 10:39:39 +00:00
|
|
|
|
2020-08-02 16:49:12 +00:00
|
|
|
#endif /* RTSKINSP_H */
|
2019-05-18 10:39:39 +00:00
|
|
|
|
2020-08-02 16:49:12 +00:00
|
|
|
/* RWPUBLICEND */
|