1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include "fsCNative3dScene.h"

#if defined fs3d

#include <fsCore/fsPoint.h>


void fsCNative3dScene::pick(const fsPoint& pScreenPos, fsI3dScene::fsTPickCallback pPickCallback)<--- The member function 'fsCNative3dScene::pick' can be static.
{
}

void fsCNative3dScene::spriteRemove(fsC3dSprite* const p3dSprite)<--- The member function 'fsCNative3dScene::spriteRemove' can be static.<--- Parameter 'p3dSprite' can be declared as pointer to const
{
}

void fsCNative3dScene::spriteAdd(fsC3dSprite* const p3dSprite)<--- The member function 'fsCNative3dScene::spriteAdd' can be static.<--- Parameter 'p3dSprite' can be declared as pointer to const
{
}

void fsCNative3dScene::ligthtAdd(fsI3dLight* const pLight)<--- The member function 'fsCNative3dScene::ligthtAdd' can be static.<--- Parameter 'pLight' can be declared as pointer to const
{
}

void fsCNative3dScene::ligthtRemove(fsI3dLight* const pLight)<--- The member function 'fsCNative3dScene::ligthtRemove' can be static.<--- Parameter 'pLight' can be declared as pointer to const
{
}

void fsCNative3dScene::cameraSet(fsC3dCamera* const pCamera)<--- The member function 'fsCNative3dScene::cameraSet' can be static.<--- Parameter 'pCamera' can be declared as pointer to const
{
}

void fsCNative3dScene::matrixApplyDo(const fsAffineMtx2d& pRenderMatrix)
{
}

void fsCNative3dScene::renderDo()
{
}


fsCNative3dScene::fsCNative3dScene() :
fsINative()
{
}

fsCNative3dScene::~fsCNative3dScene()
{
}

#endif