mirror of
https://github.com/aap/librw.git
synced 2025-12-19 00:49:50 +00:00
committing old changes
This commit is contained in:
@@ -606,6 +606,15 @@ Atomic::destroy(void)
|
||||
free(this);
|
||||
}
|
||||
|
||||
void
|
||||
Atomic::removeFromClump(void)
|
||||
{
|
||||
if(this->clump){
|
||||
this->inClump.remove();
|
||||
this->clump = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
Sphere*
|
||||
Atomic::getWorldBoundingSphere(void)
|
||||
{
|
||||
|
||||
@@ -585,11 +585,12 @@ struct Atomic : PluginBase<Atomic>
|
||||
Frame *getFrame(void) { return (Frame*)this->object.parent; }
|
||||
static Atomic *fromClump(LLLink *lnk){
|
||||
return LLLinkGetData(lnk, Atomic, inClump); }
|
||||
ObjPipeline *getPipeline(void);
|
||||
void removeFromClump(void);
|
||||
Sphere *getWorldBoundingSphere(void);
|
||||
ObjPipeline *getPipeline(void);
|
||||
void render(void) { this->renderCB(this); }
|
||||
static Atomic *streamReadClump(Stream *stream,
|
||||
Frame **frameList, Geometry **geometryList);
|
||||
void render(void) { this->renderCB(this); }
|
||||
bool streamWriteClump(Stream *stream,
|
||||
Frame **frameList, int32 numframes);
|
||||
uint32 streamGetSize(void);
|
||||
|
||||
Reference in New Issue
Block a user