aboutsummaryrefslogtreecommitdiff
path: root/docs/doxygen/nel/class_NL3D__CScene.html
blob: 1fadf27709dc49d939ed2e66a987266f90b69bca (plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML>
<HEAD>
	<TITLE>nevrax.org : docs</TITLE>
	<LINK REL=stylesheet TYPE="text/css" HREF="/inc/css/nevrax.css">
	<link href="doxygen.css" rel="stylesheet" type="text/css">
</HEAD>
<BODY MARGINHEIGHT="0" MARGINWIDTH="0">

<!-- uplinks -->
<TABLE CELLSPACING=0 CELLPADDING=0  BORDER=0>
 <TR>
        <TD WIDTH=16><IMG  SRC="/inc/img/pixel.gif" WIDTH="16" HEIGHT="16" BORDER=0 ALT=""></TD>
        <TD WIDTH=140 BGCOLOR=#dddddd><IMG  SRC="/inc/img/pixel.gif" WIDTH="140" HEIGHT="16" BORDER=0 ALT=""></TD>
        <TD WIDTH=16><IMG  SRC="/inc/img/pixel.gif" WIDTH="16" HEIGHT="16" BORDER=0 ALT=""></TD>
        <TD><IMG width=6 height=14 SRC="/inc/img/reddots.gif" ALT="#" VSPACE=2 HSPACE=2 BORDER=0 ></TD><TD VALIGN=middle>&nbsp;<A CLASS=uplinks HREF=><b>Home</B></FONT></A>&nbsp;&nbsp;&nbsp;</TD>
        <TD><IMG  width=6 height=14  SRC="/inc/img/reddots.gif" ALT="#" VSPACE=2 HSPACE=2 BORDER=0 ></TD><TD VALIGN=middle>&nbsp;<A CLASS=uplinks HREF=http://www.nevrax.com><b>nevrax.com</B></FONT></A>&nbsp;&nbsp;&nbsp;</TD>
 </TR>
</TABLE> 

<!-- banner Nevrax -->
<TABLE CELLSPACING=0 CELLPADDING=0  BORDER=0 WIDTH=100%>
 <TR><TD  BGCOLOR="#000000" BACKGROUND="/inc/img/black_banner.jpg"><A HREF=""><IMG  SRC="/inc/img/nevrax.gif" WIDTH="170" HEIGHT="45" BORDER=0 ALT="Nevrax" ></A></TD></TR>
</TABLE>

<!-- main table -->
<TABLE CELLSPACING=0 CELLPADDING=0  BORDER=0 height=100%>
 <TR>
	<TD WIDTH=16><IMG  SRC="/inc/img/pixel.gif" WIDTH="16" HEIGHT="10" BORDER=0 ALT=""></TD>
	<TD WIDTH=140   BGCOLOR=#dddddd VALIGN=TOP ALIGN=middle><IMG  SRC="/inc/img/pixel.gif" WIDTH="140" HEIGHT="10" BORDER=0 ALT="">

		<!------ Begin Box ------>
		<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 BGCOLOR=black><TR><TD><TABLE border=0  cellspacing=2 cellpadding=0 width=120><tr><TD ALIGN=middle bgcolor=black>
		<FONT COLOR=white FACE="sans-serif"><B>Nevrax.org</B></FONT></TD></TR><tr><td  colspan=2 bgcolor=#FFFFFF>
		<TABLE cellspacing=0 cellpadding=1 border=0>
			<tr><td ALIGN=middle><a  class='linkbox' href="/news/" TITLE="Rubrique news"><img width=13 height=15  hspace=5 border=0 src=/inc/img/picto-news.gif ALT=#></A></td><td><a  class='linkbox' href="/news/" TITLE="News">News</a></td></tr>
			<tr><td ALIGN=middle><a  class='linkbox' href="/mail/" TITLE="Rubrique mail"><img width=15 height=11  hspace=5 border=0 src=/inc/img/picto-mail.gif ALT=#></A></td><td><a  class='linkbox' href="/mail/" TITLE="Mailing list archive">Mailing-list</a></td></tr>
			<tr><td ALIGN=middle><a  class='linkbox' href="/docs/" TITLE="Rubrique docs"><img width=14 height=16  hspace=5 border=0 src=/inc/img/picto-docs.gif ALT=#></A></td><td><a  class='linkbox' href="/docs/" TITLE="Documentation">Documentation</a></td></tr>
			<tr><td ALIGN=middle><a  class='linkbox' href="/cvs/" TITLE="Rubrique cvs"><img width=13 height=17  hspace=5 border=0 src=/inc/img/picto-cvs.gif ALT=#></A></td><td><a  class='linkbox' href="/cvs/" TITLE="CVS Web">CVS</a></td></tr>
			<tr><td ALIGN=middle><a  class='linkbox' href="/bugs/" TITLE="Rubrique bugs"><img width=20 height=16  hspace=5 border=0 src=/inc/img/picto-bugs.gif ALT=#></A></td><td><a  class='linkbox' href="/bugs/" TITLE="Bugtracking">Bugs</a></td></tr>
			<tr><td ALIGN=middle><a  class='linkbox' href="/GPL.php3" TITLE="Rubrique license"><img  width=18 height=12   hspace=5 border=0 src=/inc/img/picto-gpl.gif ALT=#></A></td><td><a  class='linkbox' href="/GPL.php3" TITLE="License">License</a></td></tr>
		</TABLE>
		</TD></TR></TABLE></TD></TR></TABLE>
		<!------ End Box  ------>

	</TD>
	<TD WIDTH=15><IMG  SRC="/inc/img/pixel.gif" WIDTH="16" HEIGHT="16" BORDER=0 ALT=""></TD>
	<TD ALIGN=left valign=top><IMG  SRC="/inc/img/pixel.gif" WIDTH="140" HEIGHT="10" BORDER=0 ALT="">

<!-- title -->
<TABLE  background="/inc/img/redline.gif" CELLSPACING=0 CELLPADDING=0  BORDER=0 width=100%><tr><td>
<A HREF="/docs/"><img src="/inc/img/t_docs.gif" ALT="Docs" HEIGHT=20 BORDER=0></A>
</td><td><IMG  SRC="/inc/img/pixel.gif" WIDTH="1" HEIGHT="1" BORDER=0 ALT="">
</td></tr></table>
&nbsp;

<!-- block -->
<TABLE  bgcolor="#dddddd" CELLSPACING=0 CELLPADDING=0  BORDER=0 width=100%><tr><td width=1% valign=middle><img width=6 height=14 hspace=2 vspace=2 src="/inc/img/reddots.gif"></TD>
	<TD><B>Documentation</B></TD>
	<TD ALIGN=RIGHT>&nbsp;</td>
</tr></table>
<!-- Generated by Doxygen 1.2.2 on Sat May 12 22:31:51 2001 -->
<center>
<a class="qindex" href="index.html">Main Page</a> &nbsp; <a class="qindex" href="namespaces.html">Namespace List</a> &nbsp; <a class="qindex" href="hierarchy.html">Class Hierarchy</a> &nbsp; <a class="qindex" href="classes.html">Alphabetical List</a> &nbsp; <a class="qindex" href="annotated.html">Compound List</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="namespacemembers.html">Namespace Members</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a> &nbsp; <a class="qindex" href="globals.html">File Members</a> &nbsp; <a class="qindex" href="pages.html">Related Pages</a> &nbsp; <a class="qindexRef" doxygen="_cgi:/cgi-bin/nel-search.cgi" href="/cgi-bin/nel-search.cgi">Search</a> &nbsp; </center>
<hr><h1>NL3D::CScene  Class Reference</h1>A <a class="el" href="class_NL3D__CScene.html">CScene</a>, which own a list of Render Traversals, and a <a class="el" href="class_NL3D__CScene.html#a8">render</a>() method. 
<a href="#_details">More...</a>
<p>
<code>#include &lt;<a class="el" href="scene_h-source.html">scene.h</a>&gt;</code>
<p>
Inheritance diagram for NL3D::CScene<p><center><img src="class_NL3D__CScene_inherit_graph.gif" border="0" usemap="#NL3D::CScene_inherit_map" alt="Inheritance graph"></center>
<map name="NL3D::CScene_inherit_map">
<area href="class_NL3D__CMOT.html" shape="rect" coords="1,1,95,19">
</map>
<center><font size="2">[<a href="graph_legend.html">legend</a>]</font></center>Collaboration diagram for NL3D::CScene:<p><center><img src="class_NL3D__CScene_coll_graph.gif" border="0" usemap="#NL3D::CScene_coll_map" alt="Collaboration graph"></center>
<map name="NL3D::CScene_coll_map">
<area href="class_NL3D__CMOT.html" shape="rect" coords="517,4,611,23">
<area href="class_NL3D__CLightTrav.html" shape="rect" coords="505,58,623,76">
<area href="class_NL3D__CCamera.html" shape="rect" coords="512,176,616,195">
<area href="class_NL3D__CTransform.html" shape="rect" coords="239,146,359,164">
<area href="class_NL3D__CClipTrav.html" shape="rect" coords="508,342,620,360">
<area href="class_NL3D__CRenderTrav.html" shape="rect" coords="236,288,361,307">
<area href="class_NL3D__CViewport.html" shape="rect" coords="0,256,115,275">
<area href="class_NL3D__CShapeBank.html" shape="rect" coords="503,402,625,420">
<area href="class_NL3D__CHrcTrav.html" shape="rect" coords="511,466,617,484">
<area href="class_NL3D__CAnimDetailTrav.html" shape="rect" coords="488,530,640,548">
</map>
<center><font size="2">[<a href="graph_legend.html">legend</a>]</font></center><a href="class_NL3D__CScene-members.html">List of all members.</a><table border=0 cellpadding=0 cellspacing=0>
<tr><td colspan=2><br><h2>Shape/Instances.</h2></td></tr>
<tr><td nowrap align=right valign=top>typedef std::multimap&lt;std::string,<br>
<a class="el" href="class_NL3D__CTransformShape.html">CTransformShape</a>**&gt;&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#u1">TWaitingInstancesMMap</a></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="class_NL3D__CShapeBank.html">CShapeBank</a>*&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#o9">_ShapeBank</a></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="class_NL3D__CScene.html#u1">TWaitingInstancesMMap</a>&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#o10">_WaitingInstances</a></td></tr>
<tr><td colspan=2><br><h2>Public Methods</h2></td></tr>
<tr><td colspan="2"><div class="groupHeader">Construction / destruction.</div></td></tr>
<tr><td nowrap align=right valign=top>&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a0">CScene</a> ()</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Constructor.</em> <a href="#a0">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a1">~CScene</a> ()</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Destructor. <a class="el" href="class_NL3D__CScene.html#a7">release</a>().</em> <a href="#a1">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>void&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a2">initDefaultTravs</a> ()</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Create / register the 5 basic traversals:<a class="el" href="class_NL3D__CHrcTrav.html">CHrcTrav</a>, <a class="el" href="class_NL3D__CClipTrav.html">CClipTrav</a>, <a class="el" href="class_NL3D__CLightTrav.html">CLightTrav</a>, <a class="el" href="class_NL3D__CAnimDetailTrav.html">CAnimDetailTrav</a>, CRenderTravInit.</em> <a href="#a2">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>void&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a3">initDefaultRoots</a> ()</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Create/setRoot the defaults models roots: a <a class="el" href="class_NL3D__CTransform.html">CTransform</a> and a CLightGroup.</em> <a href="#a3">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>void&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a4">setDriver</a> (<a class="el" href="class_NL3D__IDriver.html">IDriver</a> *drv)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Set the driver to render Traversal.</em> <a href="#a4">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="class_NL3D__IDriver.html">IDriver</a>*&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a5">getDriver</a> () const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Get the driver of render Traversal.</em> <a href="#a5">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>void&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a6">addTrav</a> (<a class="el" href="class_NL3D__ITrav.html">ITrav</a> *v)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Add a <a class="el" href="class_NL3D__ITrav.html">ITrav</a> or a <a class="el" href="class_NL3D__ITravScene.html">ITravScene</a> to the scene.</em> <a href="#a6">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>void&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a7">release</a> ()</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Release all relative to the scene (Models, traversals...)... Destroy the Basic traversals too.</em> <a href="#a7">More...</a><em></em></font><br><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Render</div></td></tr>
<tr><td nowrap align=right valign=top>void&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a8">render</a> (bool doHrcPass=true)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Render the scene, via the registered <a class="el" href="class_NL3D__ITravScene.html">ITravScene</a>, from the CurrentCamera view.</em> <a href="#a8">More...</a><em></em></font><br><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Camera/Viewport.</div></td></tr>
<tr><td nowrap align=right valign=top>void&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a9">setCam</a> (<a class="el" href="class_NL3D__CCamera.html">CCamera</a> *cam)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Set/Get the current camera/Viewport.</em> <a href="#a9">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="class_NL3D__CCamera.html">CCamera</a>*&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a10">getCam</a> ()</td></tr>
<tr><td nowrap align=right valign=top>void&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a11">setViewport</a> (const class <a class="el" href="class_NL3D__CViewport.html">CViewport</a>&amp; viewport)</td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="class_NL3D__CViewport.html">CViewport</a>&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a12">getViewport</a> ()</td></tr>
<tr><td colspan="2"><div class="groupHeader">Instance Mgt.</div></td></tr>
<tr><td nowrap align=right valign=top>void&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a13">setShapeBank</a> (<a class="el" href="class_NL3D__CShapeBank.html">CShapeBank</a>*pShapeBank)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Set the shape bank.</em> <a href="#a13">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual <a class="el" href="class_NL3D__CTransformShape.html">CTransformShape</a>*&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a14">createInstance</a> (const std::string &amp;shapeName)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Create a model, instance of the shape "shapename".</em> <a href="#a14">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>void&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a15">createInstanceAsync</a> (const std::string &amp;shapeName, <a class="el" href="class_NL3D__CTransformShape.html">CTransformShape</a> **pInstance)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Create an instance, if the shape is not present, load the shape asynchronously.</em> <a href="#a15">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>void&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#a16">deleteInstance</a> (<a class="el" href="class_NL3D__CTransformShape.html">CTransformShape</a>*model)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Delete an instance via his pointer.</em> <a href="#a16">More...</a><em></em></font><br><br></td></tr>
<tr><td colspan=2><br><h2>Static Public Methods</h2></td></tr>
<tr><td colspan="2"><div class="groupHeader">Basic registration.</div></td></tr>
<tr><td nowrap align=right valign=top>void&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#d0">registerBasics</a> ()</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Register Basic models and observers.</em> <a href="#d0">More...</a><em></em></font><br><br></td></tr>
<tr><td colspan=2><br><h2>Private Types</h2></td></tr>
<tr><td nowrap align=right valign=top>typedef <a class="el" href="class_NL3D__std__map.html">std::map</a>&lt;<a class="el" href="types_nl_h.html#a12">sint</a>, <a class="el" href="class_NL3D__ITravScene.html">ITravScene</a>*&gt;&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#u0">TTravMap</a></td></tr>
<tr><td colspan=2><br><h2>Private Attributes</h2></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="class_NL3D__CScene.html#u0">TTravMap</a>&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#o0">RenderTraversals</a></td></tr>
<tr><td nowrap align=right valign=top>CRefPtr&lt;<a class="el" href="class_NL3D__CCamera.html">CCamera</a>&gt;&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#o1">CurrentCamera</a></td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>The camera / Viewport.</em> <a href="#o1">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="class_NL3D__CViewport.html">CViewport</a>&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#o2">_Viewport</a></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="class_NL3D__CTransform.html">CTransform</a>*&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#o8">Root</a></td></tr>
<tr><td colspan="2"><div class="groupHeader">The 5 default traversals, created / linked by CScene::initDefaultTraversals().</div></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="class_NL3D__CHrcTrav.html">CHrcTrav</a>*&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#o3">HrcTrav</a></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="class_NL3D__CClipTrav.html">CClipTrav</a>*&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#o4">ClipTrav</a></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="class_NL3D__CLightTrav.html">CLightTrav</a>*&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#o5">LightTrav</a></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="class_NL3D__CAnimDetailTrav.html">CAnimDetailTrav</a>*&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#o6">AnimDetailTrav</a></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="class_NL3D__CRenderTrav.html">CRenderTrav</a>*&nbsp;</td><td valign=bottom><a class="el" href="class_NL3D__CScene.html#o7">RenderTrav</a></td></tr>
</table>
<hr><a name="_details"></a><h2>Detailed Description</h2>
A <a class="el" href="class_NL3D__CScene.html">CScene</a>, which own a list of Render Traversals, and a <a class="el" href="class_NL3D__CScene.html#a8">render</a>() method.
<p>
<b>USER</b> <b>RULES</b>:<ul>
<li>Before creating any <a class="el" href="class_NL3D__CScene.html">CScene</a>, call the cool method <a class="el" href="class_NL3D__CScene.html#d0">CScene::registerBasics</a>(), to register baisc models and observers.<li>Create a <a class="el" href="class_NL3D__CScene.html">CScene</a> (NB: may be static <code>CScene</code> <code>scene;)</code>.<li>call first initDefaultRoot() to create / register automatically the 5 basic traversals:<ul>
<li><a class="el" href="class_NL3D__CHrcTrav.html">CHrcTrav</a><li><a class="el" href="class_NL3D__CClipTrav.html">CClipTrav</a><li><a class="el" href="class_NL3D__CLightTrav.html">CLightTrav</a><li><a class="el" href="class_NL3D__CAnimDetailTrav.html">CAnimDetailTrav</a><li><a class="el" href="class_NL3D__CRenderTrav.html">CRenderTrav</a></ul>
<li>add others user-specified traversals with <a class="el" href="class_NL3D__CScene.html#a6">addTrav</a>().<li>initRootModels() to create/setRoot the defaults models roots for the basic traversals:<ul>
<li><a class="el" href="class_NL3D__CTransform.html">CTransform</a><li>CLightGroup</ul>
<li>set your driver for this scene with <a class="el" href="class_NL3D__CScene.html#a4">setDriver</a>().<li>create any other model with <a class="el" href="class_NL3D__CMOT.html#a4">createModel</a>() (such as a camera).<li>Specify a Camera (SmartPtr-ed !!)<li><a class="el" href="class_NL3D__CScene.html#a8">render</a>().</ul>
<a class="el" href="class_NL3D__CScene.html">CScene</a> own those Traversals and those Root and kill them at <a class="el" href="class_NL3D__CScene.html#a1">~CScene</a>().
<p>
Coordinate System: right hand cordinates with: X to the right, Y to the far, Z to the top.
<p>
Z ^ | &gt; Y | / | / |/ -------&gt; X
<p>
<b>Shape</b> <b>System:\n</b> The scene has an instance Managagement:<ul>
<li><a class="el" href="class_NL3D__IShape.html">IShape</a> design the object that is instancied (a mesh as example).<li>ITransformShape is the instance, which smart_point to a <a class="el" href="class_NL3D__IShape.html">IShape</a>.<li>user can add shape manually in the scene <a class="el" href="class_NL3D__CShapeBank.html">CShapeBank</a> with <a class="el" href="class_NL3D__CShapeBank.html#a7">CShapeBank::add</a>() (), or remove them with <a class="el" href="class_NL3D__CShapeBank.html#a3">CShapeBank::release</a>() ().<li>user create instance of a shape with CScene::createInstance(string shapeName); This create/load auto the shape if needed (searching in CPath, shapename must be a valid file name),  and then create the instance, with help of <a class="el" href="class_NL3D__IShape.html#a2">IShape::createInstance</a>().</ul>
<dl compact><dt>
<b>Author(s): </b><dd>
 Lionel Berenguier ,  Nevrax France </dl><dl compact><dt>
<b>Date: </b><dd>
 2000 </dl>
<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00109">109</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.<hr><h2>Member Typedef Documentation</h2>
<a name="u0" doxytag="NL3D::CScene::TTravMap"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
typedef <a class="el" href="class_NL3D__std__map.html">std::map</a>&lt;<a class="el" href="types_nl_h.html#a12">sint</a>, <a class="el" href="class_NL3D__ITravScene.html">ITravScene</a>*&gt; NL3D::CScene::TTravMap<code> [private]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00195">195</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="u1" doxytag="NL3D::CScene::TWaitingInstancesMMap"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
typedef std::multimap&lt;std::string,<a class="el" href="class_NL3D__CTransformShape.html">CTransformShape</a>**&gt; NL3D::CScene::TWaitingInstancesMMap<code> [private]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00219">219</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<hr><h2>Constructor &amp; Destructor Documentation</h2>
<a name="a0" doxytag="NL3D::CScene::CScene"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
NL3D::CScene::CScene (
          </b></td>
          <td valign="bottom"><b>
)
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Constructor.
<p>

<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00070">70</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<a name="a1" doxytag="NL3D::CScene::~CScene"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
NL3D::CScene::~CScene (
          </b></td>
          <td valign="bottom"><b>
)
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Destructor. <a class="el" href="class_NL3D__CScene.html#a7">release</a>().
<p>

<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00127">127</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<hr><h2>Member Function Documentation</h2>
<a name="a6" doxytag="NL3D::CScene::addTrav"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
void NL3D::CScene::addTrav (
          </b></td>
          <td valign="bottom"><b>
<a class="el" href="class_NL3D__ITrav.html">ITrav</a> * <em>v</em>&nbsp;)
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Add a <a class="el" href="class_NL3D__ITrav.html">ITrav</a> or a <a class="el" href="class_NL3D__ITravScene.html">ITravScene</a> to the scene.
<p>
If not a <a class="el" href="class_NL3D__ITravScene.html">ITravScene</a> (tested with help of dynamic_cast) or if trav-&gt;getRenderOrder()==0, The traversal is not added  to the "render traversal list", else it is. Such a traversal will be traverse() -ed in the order given. The getRenderOrder() is called only in the <a class="el" href="class_NL3D__CScene.html#a6">addTrav</a>() method (so this is a static information). 
<p>
Reimplemented from <a class="el" href="class_NL3D__CMOT.html#a2">NL3D::CMOT</a>.
<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00161">161</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<a name="a14" doxytag="NL3D::CScene::createInstance"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__CTransformShape.html">CTransformShape</a> * NL3D::CScene::createInstance (
          </b></td>
          <td valign="bottom"><b>
const std::string &amp; <em>shapeName</em>&nbsp;)<code> [virtual]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Create a model, instance of the shape "shapename".
<p>
If not present, try to load "shapename" via the CPath. If fails, return NULL. 
<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00273">273</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<a name="a15" doxytag="NL3D::CScene::createInstanceAsync"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
void NL3D::CScene::createInstanceAsync (
          </b></td>
          <td valign="bottom"><b>
const std::string &amp; <em>shapeName</em>, 
          </b></td>
        </tr>
        <tr>
          <td></td>
          <td><b>
<a class="el" href="class_NL3D__CTransformShape.html">CTransformShape</a> ** <em>pInstance</em>&nbsp;)
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Create an instance, if the shape is not present, load the shape asynchronously.
<p>
The instance is really created when we process it in the rendering. 
<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00295">295</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<a name="a16" doxytag="NL3D::CScene::deleteInstance"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
void NL3D::CScene::deleteInstance (
          </b></td>
          <td valign="bottom"><b>
<a class="el" href="class_NL3D__CTransformShape.html">CTransformShape</a> * <em>pTrfmShp</em>&nbsp;)
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Delete an instance via his pointer.
<p>
An instance is an entity which reference a shape. 
<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00313">313</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<a name="a10" doxytag="NL3D::CScene::getCam"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__CCamera.html">CCamera</a> * NL3D::CScene::getCam (
          </b></td>
          <td valign="bottom"><b>
)<code> [inline]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00162">162</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="a5" doxytag="NL3D::CScene::getDriver"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__IDriver.html">IDriver</a> * NL3D::CScene::getDriver (
          </b></td>
          <td valign="bottom"><b>
) const
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Get the driver of render Traversal.
<p>

<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00249">249</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<a name="a12" doxytag="NL3D::CScene::getViewport"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__CViewport.html">CViewport</a> NL3D::CScene::getViewport (
          </b></td>
          <td valign="bottom"><b>
)<code> [inline]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00167">167</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="a3" doxytag="NL3D::CScene::initDefaultRoots"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
void NL3D::CScene::initDefaultRoots (
          </b></td>
          <td valign="bottom"><b>
)
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Create/setRoot the defaults models roots: a <a class="el" href="class_NL3D__CTransform.html">CTransform</a> and a CLightGroup.
<p>

<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00149">149</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<a name="a2" doxytag="NL3D::CScene::initDefaultTravs"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
void NL3D::CScene::initDefaultTravs (
          </b></td>
          <td valign="bottom"><b>
)
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Create / register the 5 basic traversals:<a class="el" href="class_NL3D__CHrcTrav.html">CHrcTrav</a>, <a class="el" href="class_NL3D__CClipTrav.html">CClipTrav</a>, <a class="el" href="class_NL3D__CLightTrav.html">CLightTrav</a>, <a class="el" href="class_NL3D__CAnimDetailTrav.html">CAnimDetailTrav</a>, CRenderTravInit.
<p>

<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00132">132</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<a name="d0" doxytag="NL3D::CScene::registerBasics"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
void NL3D::CScene::registerBasics (
          </b></td>
          <td valign="bottom"><b>
)<code> [static]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Register Basic models and observers.
<p>

<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00054">54</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<a name="a7" doxytag="NL3D::CScene::release"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
void NL3D::CScene::release (
          </b></td>
          <td valign="bottom"><b>
void&nbsp;)
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Release all relative to the scene (Models, traversals...)... Destroy the Basic traversals too.
<p>

<p>
Reimplemented from <a class="el" href="class_NL3D__CMOT.html#a7">NL3D::CMOT</a>.
<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00084">84</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<a name="a8" doxytag="NL3D::CScene::render"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
void NL3D::CScene::render (
          </b></td>
          <td valign="bottom"><b>
bool <em>doHrcPass</em> = true&nbsp;)
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Render the scene, via the registered <a class="el" href="class_NL3D__ITravScene.html">ITravScene</a>, from the CurrentCamera view.
<p>
NB: no Driver clear buffers (color or ZBuffer) are done.... This call t-&gt;traverse() function to registered render traversal following their order given. <dl compact><dt>
<b>Parameters: </b><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em>doHrcPass</em>
&nbsp;</td><td>
 set it to false to indicate that the <a class="el" href="class_NL3D__CHrcTrav.html">CHrcTrav</a> have not to be traversed. UseFull to optimize if  you know that NONE of your models have moved (a good example is a shoot of the scene from different cameras). </td></tr>
</table>
</dl>
<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00179">179</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<a name="a9" doxytag="NL3D::CScene::setCam"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
void NL3D::CScene::setCam (
          </b></td>
          <td valign="bottom"><b>
<a class="el" href="class_NL3D__CCamera.html">CCamera</a> * <em>cam</em>&nbsp;)<code> [inline]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Set/Get the current camera/Viewport.
<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00161">161</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="a4" doxytag="NL3D::CScene::setDriver"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
void NL3D::CScene::setDriver (
          </b></td>
          <td valign="bottom"><b>
<a class="el" href="class_NL3D__IDriver.html">IDriver</a> * <em>drv</em>&nbsp;)
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Set the driver to render Traversal.
<p>

<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00242">242</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<a name="a13" doxytag="NL3D::CScene::setShapeBank"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
void NL3D::CScene::setShapeBank (
          </b></td>
          <td valign="bottom"><b>
<a class="el" href="class_NL3D__CShapeBank.html">CShapeBank</a> * <em>pShapeBank</em>&nbsp;)
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Set the shape bank.
<p>

<p>
Definition at line <a class="el" href="scene_cpp-source.html#l00266">266</a> of file <a class="el" href="scene_cpp-source.html">scene.cpp</a>.    </td>
  </tr>
</table>
<a name="a11" doxytag="NL3D::CScene::setViewport"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
void NL3D::CScene::setViewport (
          </b></td>
          <td valign="bottom"><b>
const class <a class="el" href="class_NL3D__CViewport.html">CViewport</a> &amp; <em>viewport</em>&nbsp;)<code> [inline]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00163">163</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<hr><h2>Member Data Documentation</h2>
<a name="o6" doxytag="NL3D::CScene::AnimDetailTrav"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__CAnimDetailTrav.html">CAnimDetailTrav</a> * NL3D::CScene::AnimDetailTrav<code> [private]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00207">207</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="o4" doxytag="NL3D::CScene::ClipTrav"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__CClipTrav.html">CClipTrav</a> * NL3D::CScene::ClipTrav<code> [private]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00205">205</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="o1" doxytag="NL3D::CScene::CurrentCamera"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
CRefPtr&lt; <a class="el" href="class_NL3D__CCamera.html">CCamera</a> &gt; NL3D::CScene::CurrentCamera<code> [private]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The camera / Viewport.
<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00199">199</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="o3" doxytag="NL3D::CScene::HrcTrav"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__CHrcTrav.html">CHrcTrav</a> * NL3D::CScene::HrcTrav<code> [private]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00204">204</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="o5" doxytag="NL3D::CScene::LightTrav"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__CLightTrav.html">CLightTrav</a> * NL3D::CScene::LightTrav<code> [private]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00206">206</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="o7" doxytag="NL3D::CScene::RenderTrav"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__CRenderTrav.html">CRenderTrav</a> * NL3D::CScene::RenderTrav<code> [private]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00208">208</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="o0" doxytag="NL3D::CScene::RenderTraversals"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__CScene.html#u0">TTravMap</a> NL3D::CScene::RenderTraversals<code> [private]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00196">196</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="o8" doxytag="NL3D::CScene::Root"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__CTransform.html">CTransform</a> * NL3D::CScene::Root<code> [private]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00212">212</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="o9" doxytag="NL3D::CScene::_ShapeBank"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__CShapeBank.html">CShapeBank</a> * NL3D::CScene::_ShapeBank<code> [private]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00217">217</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="o2" doxytag="NL3D::CScene::_Viewport"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__CViewport.html">CViewport</a> NL3D::CScene::_Viewport<code> [private]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00200">200</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<a name="o10" doxytag="NL3D::CScene::_WaitingInstances"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td nowrap valign="top"><b> 
<a class="el" href="class_NL3D__CScene.html#u1">TWaitingInstancesMMap</a> NL3D::CScene::_WaitingInstances<code> [private]</code>
          </b></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>

<p>
Definition at line <a class="el" href="scene_h-source.html#l00220">220</a> of file <a class="el" href="scene_h-source.html">scene.h</a>.    </td>
  </tr>
</table>
<hr>The documentation for this class was generated from the following files:<ul>
<li><a class="el" href="scene_h-source.html">scene.h</a><li><a class="el" href="scene_cpp-source.html">scene.cpp</a></ul>


<!-- footer -->
<BR><FONT Size=+5>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </FONT>
</TD>
<TD WIDTH=15><IMG  SRC=/inc/img/pixel.gif WIDTH=15 HEIGHT=15 BORDER=0 ALT=""></TD>
</TR>
</TABLE>
</BODY>
</HTML>