aboutsummaryrefslogtreecommitdiff
path: root/docs/doxygen/nel/classNL3D_1_1CParticleSystemProcess.html
blob: 3ef61dca429726bd4124a3c3e7b761d1d5f01c59 (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
<!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.14 -->
<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::CParticleSystemProcess  Class Reference</h1>A system particle process; A process is anything that can be called at each update of the system. 
<a href="#_details">More...</a>
<p>
<code>#include &lt;<a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>&gt;</code>
<p>
<p>Inheritance diagram for NL3D::CParticleSystemProcess:
<p><center><img src="classNL3D_1_1CParticleSystemProcess.gif" usemap="#NL3D::CParticleSystemProcess_map" border="0"></center>
<map name="NL3D::CParticleSystemProcess_map">
<area href="classNLMISC_1_1IStreamable.html" alt="NLMISC::IStreamable" shape="rect" coords="0,56,188,80">
<area href="classNLMISC_1_1IClassable.html" alt="NLMISC::IClassable" shape="rect" coords="0,0,188,24">
<area href="classNL3D_1_1CPSLocated.html" alt="NL3D::CPSLocated" shape="rect" coords="0,168,188,192">
</map>
<a href="classNL3D_1_1CParticleSystemProcess-members.html">List of all members.</a><table border=0 cellpadding=0 cellspacing=0>
<tr><td colspan=2><br><h2>Public Methods</h2></td></tr>
<tr><td nowrap align=right valign=top>virtual void&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a0">step</a> (<a class="el" href="namespaceNL3D.html#a484">TPSProcessPass</a> pass, <a class="el" href="namespaceNL3D.html#a1">TAnimationTime</a> ellapsedTime, <a class="el" href="namespaceNL3D.html#a1">TAnimationTime</a> realEt)=0</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>execute this process, telling how much time ellapsed must be used for motion, and the real time ellapsed (for lifetime managment).</em> <a href="#a0">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual bool&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a1">computeBBox</a> (<a class="el" href="classNLMISC_1_1CAABBox.html">NLMISC::CAABBox</a> &amp;aabbox) const=0</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Compute the aabbox of this process, (expressed in world basis).</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="classNL3D_1_1CParticleSystemProcess.html#a2">setOwner</a> (<a class="el" href="classNL3D_1_1CParticleSystem.html">CParticleSystem</a> *ps)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Set the process owner. Called by the particle system during attachment.</em> <a href="#a2">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="classNL3D_1_1CParticleSystem.html">CParticleSystem</a> *&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a3">getOwner</a> (void)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Retrieve the particle system that owns this process.</em> <a href="#a3">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>const <a class="el" href="classNL3D_1_1CParticleSystem.html">CParticleSystem</a> *&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a4">getOwner</a> (void) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>retrieve the particle system that owns this process (const version).</em> <a href="#a4">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual void&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a5">releaseRefTo</a> (const CParticleSystemProcess *other)=0</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Release any reference this process may have on the given process.</em> <a href="#a5">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual void&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a6">releaseAllRef</a> ()=0</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Release any reference this process may have to other process of the system For example, this is used when detaching a process of a system.</em> <a href="#a6">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>bool&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a7">isInSystemBasis</a> (void) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Return true if the process is in the particle system basis, false if it's in the world basis.</em> <a href="#a7">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual void&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a8">setSystemBasis</a> (bool sysBasis=true)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Choose the basis for this process.</em> <a href="#a8">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual bool&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a9">hasParticles</a> (void) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>tells wether there are alive entities / particles in the system.</em> <a href="#a9">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual bool&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a10">hasEmitters</a> (void) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>tells wether there are alive emitters / particles in the system.</em> <a href="#a10">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual <a class="el" href="memory__common_8h.html#a15">uint</a>&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a11">querryMaxWantedNumFaces</a> (void)=0</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>max number of faces wanted by this process (for load balancing).</em> <a href="#a11">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual bool&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a12">isParametricMotionEnabled</a> (void) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>test wether parametric motion is enabled.</em> <a href="#a12">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual void&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a13">performParametricMotion</a> (<a class="el" href="namespaceNL3D.html#a1">TAnimationTime</a> date, <a class="el" href="namespaceNL3D.html#a1">TAnimationTime</a> ellapsedTime, <a class="el" href="namespaceNL3D.html#a1">TAnimationTime</a> realEllapsedTime)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>perform parametric motion if enabled.</em> <a href="#a13">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual void&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a14">updateLife</a> (<a class="el" href="namespaceNL3D.html#a1">TAnimationTime</a> ellapsedTime)=0</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Update the life of objects..</em> <a href="#a14">More...</a><em></em></font><br><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Object</div></td></tr>
<tr><td nowrap align=right valign=top>&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#z663_0">CParticleSystemProcess</a> ()</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>ctor.</em> <a href="#z663_0">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#z663_1">~CParticleSystemProcess</a> ()</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>dtor.</em> <a href="#z663_1">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual void&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#z663_2">serial</a> (<a class="el" href="classNLMISC_1_1IStream.html">NLMISC::IStream</a> &amp;f)  throw (NLMISC::EStream)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Serialize this object.</em> <a href="#z663_2">More...</a><em></em></font><br><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Useful methods for edition</div></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="classNL3D_1_1CFontGenerator.html">CFontGenerator</a> *&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#z664_0">getFontGenerator</a> (void)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Shortcut to get a font generator if one was set (edition mode).</em> <a href="#z664_0">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>const <a class="el" href="classNL3D_1_1CFontGenerator.html">CFontGenerator</a> *&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#z664_1">getFontGenerator</a> (void) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Shortcut to get a font generator if one was set, const version (edition mode).</em> <a href="#z664_1">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="classNL3D_1_1CFontManager.html">CFontManager</a> *&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#z664_2">getFontManager</a> (void)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Shortcut to get a font Manager if one was set (edition mode).</em> <a href="#z664_2">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>const <a class="el" href="classNL3D_1_1CFontManager.html">CFontManager</a> *&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#z664_3">getFontManager</a> (void) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Shortcut to get a font Manager if one was set, const version (edition mode).</em> <a href="#z664_3">More...</a><em></em></font><br><br></td></tr>
<tr><td colspan=2><br><h2>Protected Attributes</h2></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="classNL3D_1_1CParticleSystem.html">CParticleSystem</a> *&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#n0">_Owner</a></td></tr>
<tr><td nowrap align=right valign=top>bool&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CParticleSystemProcess.html#n1">_SystemBasisEnabled</a></td></tr>
</table>
<hr><a name="_details"></a><h2>Detailed Description</h2>
A system particle process; A process is anything that can be called at each update of the system.
<p>

<p>
Definition at line <a class="el" href="particle__system__process_8h-source.html#l00062">62</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.<hr><h2>Constructor &amp; Destructor Documentation</h2>
<a name="z663_0" doxytag="NL3D::CParticleSystemProcess::CParticleSystemProcess"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> NL3D::CParticleSystemProcess::CParticleSystemProcess </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap><code> [inline]</code></td>
        </tr>

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

<p>
ctor.
<p>

<p>
Definition at line <a class="el" href="particle__system__process_8h-source.html#l00069">69</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.
<p>
References <a class="el" href="particle__system__process_8h-source.html#l00175">_Owner</a>, and <a class="el" href="particle__system__process_8h-source.html#l00178">_SystemBasisEnabled</a>.    </td>
  </tr>
</table>
<a name="z663_1" doxytag="NL3D::CParticleSystemProcess::~CParticleSystemProcess"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual NL3D::CParticleSystemProcess::~CParticleSystemProcess </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap><code> [inline, virtual]</code></td>
        </tr>

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

<p>
dtor.
<p>

<p>
Definition at line <a class="el" href="particle__system__process_8h-source.html#l00072">72</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.    </td>
  </tr>
</table>
<hr><h2>Member Function Documentation</h2>
<a name="a1" doxytag="NL3D::CParticleSystemProcess::computeBBox"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual bool NL3D::CParticleSystemProcess::computeBBox </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="classNLMISC_1_1CAABBox.html">NLMISC::CAABBox</a> &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp; <em>aabbox</em>          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap> const<code> [pure virtual]</code></td>
        </tr>

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

<p>
Compute the aabbox of this process, (expressed in world basis).
<p>
<dl compact><dt><b>
Returns: </b><dd>
true if there is any aabbox </dl><dl compact><dt><b>
Parameters: </b><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em>aabbox</em>&nbsp;</td><td>
a ref to the result box </td></tr>
</table>
</dl>
<p>
Implemented in <a class="el" href="classNL3D_1_1CPSLocated.html#a18">NL3D::CPSLocated</a>.    </td>
  </tr>
</table>
<a name="z664_1" doxytag="NL3D::CParticleSystemProcess::getFontGenerator"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> const <a class="el" href="classNL3D_1_1CFontGenerator.html">CFontGenerator</a> * NL3D::CParticleSystemProcess::getFontGenerator </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">void&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap> const</td>
        </tr>

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

<p>
Shortcut to get a font generator if one was set, const version (edition mode).
<p>

<p>
Definition at line <a class="el" href="particle__system__process_8cpp-source.html#l00044">44</a> of file <a class="el" href="particle__system__process_8cpp-source.html">particle_system_process.cpp</a>.
<p>
References <a class="el" href="particle__system__process_8h-source.html#l00175">_Owner</a>, and <a class="el" href="debug_8h-source.html#l00254">nlassert</a>.    </td>
  </tr>
</table>
<a name="z664_0" doxytag="NL3D::CParticleSystemProcess::getFontGenerator"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="classNL3D_1_1CFontGenerator.html">CFontGenerator</a> * NL3D::CParticleSystemProcess::getFontGenerator </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">void&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

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

<p>
Shortcut to get a font generator if one was set (edition mode).
<p>

<p>
Definition at line <a class="el" href="particle__system__process_8cpp-source.html#l00038">38</a> of file <a class="el" href="particle__system__process_8cpp-source.html">particle_system_process.cpp</a>.
<p>
References <a class="el" href="particle__system__process_8h-source.html#l00175">_Owner</a>, and <a class="el" href="debug_8h-source.html#l00254">nlassert</a>.    </td>
  </tr>
</table>
<a name="z664_3" doxytag="NL3D::CParticleSystemProcess::getFontManager"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> const <a class="el" href="classNL3D_1_1CFontManager.html">CFontManager</a> * NL3D::CParticleSystemProcess::getFontManager </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">void&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap> const</td>
        </tr>

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

<p>
Shortcut to get a font Manager if one was set, const version (edition mode).
<p>

<p>
Definition at line <a class="el" href="particle__system__process_8cpp-source.html#l00056">56</a> of file <a class="el" href="particle__system__process_8cpp-source.html">particle_system_process.cpp</a>.
<p>
References <a class="el" href="particle__system__process_8h-source.html#l00175">_Owner</a>, and <a class="el" href="debug_8h-source.html#l00254">nlassert</a>.    </td>
  </tr>
</table>
<a name="z664_2" doxytag="NL3D::CParticleSystemProcess::getFontManager"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="classNL3D_1_1CFontManager.html">CFontManager</a> * NL3D::CParticleSystemProcess::getFontManager </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">void&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

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

<p>
Shortcut to get a font Manager if one was set (edition mode).
<p>

<p>
Definition at line <a class="el" href="particle__system__process_8cpp-source.html#l00050">50</a> of file <a class="el" href="particle__system__process_8cpp-source.html">particle_system_process.cpp</a>.
<p>
References <a class="el" href="particle__system__process_8h-source.html#l00175">_Owner</a>, and <a class="el" href="debug_8h-source.html#l00254">nlassert</a>.    </td>
  </tr>
</table>
<a name="a4" doxytag="NL3D::CParticleSystemProcess::getOwner"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> const <a class="el" href="classNL3D_1_1CParticleSystem.html">CParticleSystem</a>* NL3D::CParticleSystemProcess::getOwner </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">void&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap> const<code> [inline]</code></td>
        </tr>

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

<p>
retrieve the particle system that owns this process (const version).
<p>

<p>
Definition at line <a class="el" href="particle__system__process_8h-source.html#l00109">109</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.
<p>
References <a class="el" href="particle__system__process_8h-source.html#l00175">_Owner</a>.    </td>
  </tr>
</table>
<a name="a3" doxytag="NL3D::CParticleSystemProcess::getOwner"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="classNL3D_1_1CParticleSystem.html">CParticleSystem</a>* NL3D::CParticleSystemProcess::getOwner </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">void&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap><code> [inline]</code></td>
        </tr>

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

<p>
Retrieve the particle system that owns this process.
<p>

<p>
Definition at line <a class="el" href="particle__system__process_8h-source.html#l00106">106</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.
<p>
References <a class="el" href="particle__system__process_8h-source.html#l00175">_Owner</a>.    </td>
  </tr>
</table>
<a name="a10" doxytag="NL3D::CParticleSystemProcess::hasEmitters"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual bool NL3D::CParticleSystemProcess::hasEmitters </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">void&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap> const<code> [inline, virtual]</code></td>
        </tr>

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

<p>
tells wether there are alive emitters / particles in the system.
<p>

<p>
Reimplemented in <a class="el" href="classNL3D_1_1CPSLocated.html#a66">NL3D::CPSLocated</a>.
<p>
Definition at line <a class="el" href="particle__system__process_8h-source.html#l00155">155</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.    </td>
  </tr>
</table>
<a name="a9" doxytag="NL3D::CParticleSystemProcess::hasParticles"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual bool NL3D::CParticleSystemProcess::hasParticles </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">void&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap> const<code> [inline, virtual]</code></td>
        </tr>

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

<p>
tells wether there are alive entities / particles in the system.
<p>

<p>
Reimplemented in <a class="el" href="classNL3D_1_1CPSLocated.html#a65">NL3D::CPSLocated</a>.
<p>
Definition at line <a class="el" href="particle__system__process_8h-source.html#l00152">152</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.    </td>
  </tr>
</table>
<a name="a7" doxytag="NL3D::CParticleSystemProcess::isInSystemBasis"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> bool NL3D::CParticleSystemProcess::isInSystemBasis </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">void&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap> const<code> [inline]</code></td>
        </tr>

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

<p>
Return true if the process is in the particle system basis, false if it's in the world basis.
<p>

<p>
Definition at line <a class="el" href="particle__system__process_8h-source.html#l00140">140</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.
<p>
References <a class="el" href="particle__system__process_8h-source.html#l00178">_SystemBasisEnabled</a>.
<p>
Referenced by <a class="el" href="ps__located_8cpp-source.html#l00278">NL3D::CPSLocated::setSystemBasis</a>.    </td>
  </tr>
</table>
<a name="a12" doxytag="NL3D::CParticleSystemProcess::isParametricMotionEnabled"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual bool NL3D::CParticleSystemProcess::isParametricMotionEnabled </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">void&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap> const<code> [inline, virtual]</code></td>
        </tr>

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

<p>
test wether parametric motion is enabled.
<p>

<p>
Reimplemented in <a class="el" href="classNL3D_1_1CPSLocated.html#a74">NL3D::CPSLocated</a>.
<p>
Definition at line <a class="el" href="particle__system__process_8h-source.html#l00164">164</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.    </td>
  </tr>
</table>
<a name="a13" doxytag="NL3D::CParticleSystemProcess::performParametricMotion"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual void NL3D::CParticleSystemProcess::performParametricMotion </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="namespaceNL3D.html#a1">TAnimationTime</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>date</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="namespaceNL3D.html#a1">TAnimationTime</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>ellapsedTime</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="namespaceNL3D.html#a1">TAnimationTime</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>realEllapsedTime</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"><code> [inline, virtual]</code></td>
        </tr>

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

<p>
perform parametric motion if enabled.
<p>

<p>
Reimplemented in <a class="el" href="classNL3D_1_1CPSLocated.html#a75">NL3D::CPSLocated</a>.
<p>
Definition at line <a class="el" href="particle__system__process_8h-source.html#l00167">167</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.
<p>
References <a class="el" href="debug_8h-source.html#l00254">nlassert</a>, and <a class="el" href="animation__time_8h-source.html#l00044">NL3D::TAnimationTime</a>.    </td>
  </tr>
</table>
<a name="a11" doxytag="NL3D::CParticleSystemProcess::querryMaxWantedNumFaces"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual <a class="el" href="memory__common_8h.html#a15">uint</a> NL3D::CParticleSystemProcess::querryMaxWantedNumFaces </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">void&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap><code> [pure virtual]</code></td>
        </tr>

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

<p>
max number of faces wanted by this process (for load balancing).
<p>

<p>
Implemented in <a class="el" href="classNL3D_1_1CPSLocated.html#a70">NL3D::CPSLocated</a>.    </td>
  </tr>
</table>
<a name="a6" doxytag="NL3D::CParticleSystemProcess::releaseAllRef"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual void NL3D::CParticleSystemProcess::releaseAllRef </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp;          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap><code> [pure virtual]</code></td>
        </tr>

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

<p>
Release any reference this process may have to other process of the system For example, this is used when detaching a process of a system.
<p>

<p>
Implemented in <a class="el" href="classNL3D_1_1CPSLocated.html#a8">NL3D::CPSLocated</a>.
<p>
Referenced by <a class="el" href="particle__system__process_8h-source.html#l00096">setOwner</a>.    </td>
  </tr>
</table>
<a name="a5" doxytag="NL3D::CParticleSystemProcess::releaseRefTo"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual void NL3D::CParticleSystemProcess::releaseRefTo </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const CParticleSystemProcess *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp; <em>other</em>          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap><code> [pure virtual]</code></td>
        </tr>

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

<p>
Release any reference this process may have on the given process.
<p>
Force example, this may be used to remove a target from a force. For example, this is used when detaching a process of a system. 
<p>
Implemented in <a class="el" href="classNL3D_1_1CPSLocated.html#a7">NL3D::CPSLocated</a>.    </td>
  </tr>
</table>
<a name="z663_2" doxytag="NL3D::CParticleSystemProcess::serial"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void NL3D::CParticleSystemProcess::serial </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="classNLMISC_1_1IStream.html">NLMISC::IStream</a> &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp; <em>f</em>          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap>  throw (<a class="el" href="structNLMISC_1_1EStream.html">NLMISC::EStream</a>)<code> [virtual]</code></td>
        </tr>

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

<p>
Serialize this object.
<p>
Everything is saved, except for the fontManager and the fontGenerator. They must be set again if the PSToolRender pass is used. 
<p>
Implements <a class="el" href="classNLMISC_1_1IStreamable.html#a0">NLMISC::IStreamable</a>.
<p>
Reimplemented in <a class="el" href="classNL3D_1_1CPSLocated.html#a47">NL3D::CPSLocated</a>.
<p>
Definition at line <a class="el" href="particle__system__process_8cpp-source.html#l00064">64</a> of file <a class="el" href="particle__system__process_8cpp-source.html">particle_system_process.cpp</a>.    </td>
  </tr>
</table>
<a name="a2" doxytag="NL3D::CParticleSystemProcess::setOwner"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void NL3D::CParticleSystemProcess::setOwner </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="classNL3D_1_1CParticleSystem.html">CParticleSystem</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp; <em>ps</em>          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap><code> [inline]</code></td>
        </tr>

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

<p>
Set the process owner. Called by the particle system during attachment.
<p>

<p>
Definition at line <a class="el" href="particle__system__process_8h-source.html#l00096">96</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.
<p>
References <a class="el" href="particle__system__process_8h-source.html#l00175">_Owner</a>, and <a class="el" href="classNL3D_1_1CParticleSystemProcess.html#a6">releaseAllRef</a>.    </td>
  </tr>
</table>
<a name="a8" doxytag="NL3D::CParticleSystemProcess::setSystemBasis"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual void NL3D::CParticleSystemProcess::setSystemBasis </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">bool&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp; <em>sysBasis</em> = true          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap><code> [inline, virtual]</code></td>
        </tr>

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

<p>
Choose the basis for this process.
<p>
Warning : This won't change any existing coordinate By default, all process are expressed in the world basis <dl compact><dt><b>
Parameters: </b><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em>sysBasis</em>&nbsp;</td><td>
truer if particles are in the system basis </td></tr>
</table>
</dl>
<p>
Reimplemented in <a class="el" href="classNL3D_1_1CPSLocated.html#a71">NL3D::CPSLocated</a>.
<p>
Definition at line <a class="el" href="particle__system__process_8h-source.html#l00149">149</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.
<p>
References <a class="el" href="particle__system__process_8h-source.html#l00178">_SystemBasisEnabled</a>.    </td>
  </tr>
</table>
<a name="a0" doxytag="NL3D::CParticleSystemProcess::step"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual void NL3D::CParticleSystemProcess::step </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="namespaceNL3D.html#a484">TPSProcessPass</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>pass</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="namespaceNL3D.html#a1">TAnimationTime</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>ellapsedTime</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="namespaceNL3D.html#a1">TAnimationTime</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>realEt</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"><code> [pure virtual]</code></td>
        </tr>

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

<p>
execute this process, telling how much time ellapsed must be used for motion, and the real time ellapsed (for lifetime managment).
<p>

<p>
Implemented in <a class="el" href="classNL3D_1_1CPSLocated.html#a41">NL3D::CPSLocated</a>.    </td>
  </tr>
</table>
<a name="a14" doxytag="NL3D::CParticleSystemProcess::updateLife"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> virtual void NL3D::CParticleSystemProcess::updateLife </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="namespaceNL3D.html#a1">TAnimationTime</a>&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp; <em>ellapsedTime</em>          </td>
          <td class="md" valign="top">)&nbsp;</td>
          <td class="md" nowrap><code> [pure virtual]</code></td>
        </tr>

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

<p>
Update the life of objects..
<p>

<p>
Implemented in <a class="el" href="classNL3D_1_1CPSLocated.html#a76">NL3D::CPSLocated</a>.    </td>
  </tr>
</table>
<hr><h2>Member Data Documentation</h2>
<a name="n0" doxytag="NL3D::CParticleSystemProcess::_Owner"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="classNL3D_1_1CParticleSystem.html">CParticleSystem</a>* NL3D::CParticleSystemProcess::_Owner<code> [protected]</code>
      </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="particle__system__process_8h-source.html#l00175">175</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.
<p>
Referenced by <a class="el" href="ps__located_8cpp-source.html#l00226">NL3D::CPSLocated::allocateParametricInfos</a>, <a class="el" href="ps__located_8cpp-source.html#l00429">NL3D::CPSLocated::computeI</a>, <a class="el" href="ps__located_8cpp-source.html#l00443">NL3D::CPSLocated::computeJ</a>, <a class="el" href="ps__located_8cpp-source.html#l00458">NL3D::CPSLocated::computeK</a>, <a class="el" href="particle__system__process_8h-source.html#l00069">CParticleSystemProcess</a>, <a class="el" href="ps__located_8cpp-source.html#l00690">NL3D::CPSLocated::deleteElement</a>, <a class="el" href="ps__located_8cpp-source.html#l00473">NL3D::CPSLocated::getDriver</a>, <a class="el" href="particle__system__process_8cpp-source.html#l00038">getFontGenerator</a>, <a class="el" href="particle__system__process_8cpp-source.html#l00050">getFontManager</a>, <a class="el" href="ps__located_8cpp-source.html#l00341">NL3D::CPSLocated::getLODVect</a>, <a class="el" href="particle__system__process_8h-source.html#l00106">getOwner</a>, <a class="el" href="ps__located_8cpp-source.html#l00355">NL3D::CPSLocated::getScene</a>, <a class="el" href="ps__located_8cpp-source.html#l00349">NL3D::CPSLocated::getUserParam</a>, <a class="el" href="ps__located_8cpp-source.html#l00584">NL3D::CPSLocated::newElement</a>, <a class="el" href="ps__located_8cpp-source.html#l00296">NL3D::CPSLocated::notifyMaxNumFacesChanged</a>, <a class="el" href="particle__system__process_8h-source.html#l00096">setOwner</a>, <a class="el" href="ps__located_8cpp-source.html#l01347">NL3D::CPSLocated::setupDriverModelMatrix</a>, <a class="el" href="ps__located_8cpp-source.html#l01067">NL3D::CPSLocated::step</a>, and <a class="el" href="ps__located_8cpp-source.html#l01198">NL3D::CPSLocated::updateLife</a>.    </td>
  </tr>
</table>
<a name="n1" doxytag="NL3D::CParticleSystemProcess::_SystemBasisEnabled"></a><p>
<table width="100%" cellpadding="2" cellspacing="0" border="0">
  <tr>
    <td class="md">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> bool NL3D::CParticleSystemProcess::_SystemBasisEnabled<code> [protected]</code>
      </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="particle__system__process_8h-source.html#l00178">178</a> of file <a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a>.
<p>
Referenced by <a class="el" href="ps__located_8cpp-source.html#l00429">NL3D::CPSLocated::computeI</a>, <a class="el" href="ps__located_8cpp-source.html#l00443">NL3D::CPSLocated::computeJ</a>, <a class="el" href="ps__located_8cpp-source.html#l00458">NL3D::CPSLocated::computeK</a>, <a class="el" href="particle__system__process_8h-source.html#l00069">CParticleSystemProcess</a>, <a class="el" href="ps__located_8cpp-source.html#l01443">NL3D::CPSLocated::integrableForceBasisChanged</a>, <a class="el" href="particle__system__process_8h-source.html#l00140">isInSystemBasis</a>, <a class="el" href="ps__located_8cpp-source.html#l00584">NL3D::CPSLocated::newElement</a>, <a class="el" href="ps__located_8cpp-source.html#l01406">NL3D::CPSLocated::registerIntegrableForce</a>, <a class="el" href="particle__system__process_8h-source.html#l00149">setSystemBasis</a>, and <a class="el" href="ps__located_8cpp-source.html#l01418">NL3D::CPSLocated::unregisterIntegrableForce</a>.    </td>
  </tr>
</table>
<hr>The documentation for this class was generated from the following files:<ul>
<li><a class="el" href="particle__system__process_8h-source.html">particle_system_process.h</a><li><a class="el" href="particle__system__process_8cpp-source.html">particle_system_process.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>