aboutsummaryrefslogtreecommitdiff
path: root/docs/doxygen/nel/classNL3D_1_1CPSAttribMakerT.html
blob: dd2c18a1fc5613da275f93f1b1bd0bc5c4d46257 (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
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
<!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=><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::CPSAttribMakerT  Class Template Reference</h1>This template generate an attrib maker by defining the methods of the CPSCAttribMaker class. 
<a href="#_details">More...</a>
<p>
<code>#include &lt;<a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>&gt;</code>
<p>
<p>Inheritance diagram for NL3D::CPSAttribMakerT:
<p><center><img src="classNL3D_1_1CPSAttribMakerT.gif" usemap="#NL3D::CPSAttribMakerT_map" border="0"></center>
<map name="NL3D::CPSAttribMakerT_map">
<area href="classNL3D_1_1CPSAttribMaker.html" alt="NL3D::CPSAttribMaker" shape="rect" coords="0,168,172,192">
<area href="classNL3D_1_1CPSAttribMakerBase.html" alt="NL3D::CPSAttribMakerBase" shape="rect" coords="0,112,172,136">
<area href="classNLMISC_1_1IStreamable.html" alt="NLMISC::IStreamable" shape="rect" coords="0,56,172,80">
<area href="classNLMISC_1_1IClassable.html" alt="NLMISC::IClassable" shape="rect" coords="0,0,172,24">
</map>
<a href="classNL3D_1_1CPSAttribMakerT-members.html">List of all members.</a><table border=0 cellpadding=0 cellspacing=0>
<tr><td colspan=2><br><h2>Public Types</h2></td></tr>
<tr><td nowrap align=right valign=top>typedef T&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CPSAttribMakerT.html#s0">value_type</a></td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>the type of the attribute to be produced.</em> <a href="#s0">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>typedef F&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CPSAttribMakerT.html#s1">functor_type</a></td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>the type of the functor object.</em> <a href="#s1">More...</a><em></em></font><br><br></td></tr>
<tr><td colspan=2><br><h2>Public Methods</h2></td></tr>
<tr><td nowrap align=right valign=top>virtual T&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CPSAttribMakerT.html#a0">get</a> (<a class="el" href="classNL3D_1_1CPSLocated.html">CPSLocated</a> *loc, <a class="el" href="memory__common_8h.html#a11">uint32</a> <a class="el" href="driver__opengl__extension__def_8h.html#a358">index</a>)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>compute one value of the attribute for the given index.</em> <a href="#a0">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual T&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CPSAttribMakerT.html#a1">get</a> (float input)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Direct lookup of the result value from a float input (if it makes sense).</em> <a href="#a1">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_1CPSAttribMakerT.html#a2">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>serialisation of the object.</em> <a href="#a2">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="classNL3D_1_1CPSAttribMakerT.html#a3">CPSAttribMakerT</a> (float nbCycles)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>construct the attrib maker specifying the number of cycles to do.</em> <a href="#a3">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_1CPSAttribMakerT.html#a4">~CPSAttribMakerT</a> ()</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>dtor.</em> <a href="#a4">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_1CPSAttribMakerT.html#a5">hasCustomInput</a> (void)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>tells wether one may choose one attribute from a <a class="el" href="classNL3D_1_1CPSLocated.html">CPSLocated</a> to use as an input.</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_1CPSAttribMakerT.html#a6">setInput</a> (const <a class="el" href="structNL3D_1_1CPSInputType.html">CPSInputType</a> &amp;input)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>set a new input type.</em> <a href="#a6">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>virtual <a class="el" href="structNL3D_1_1CPSInputType.html">CPSInputType</a>&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CPSAttribMakerT.html#a7">getInput</a> (void) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>get the type of input (if supported).</em> <a href="#a7">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_1CPSAttribMakerT.html#a8">isClampingSupported</a> (void) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>tells wether clamping is supported for the input (value can't go above MaxInputValue).</em> <a href="#a8">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_1CPSAttribMakerT.html#a9">setClamping</a> (bool enable=true)</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Enable, disable the clamping of input values.</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_1CPSAttribMakerT.html#a10">getClamping</a> (void) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Test if the clamping is enabled.</em> <a href="#a10">More...</a><em></em></font><br><br></td></tr>
<tr><td colspan=2><br><h2>Public Attributes</h2></td></tr>
<tr><td nowrap align=right valign=top>F&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CPSAttribMakerT.html#m0">_F</a></td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>the functor object.</em> <a href="#m0">More...</a><em></em></font><br><br></td></tr>
<tr><td colspan=2><br><h2>Private Methods</h2></td></tr>
<tr><td nowrap align=right valign=top>template&lt;typename It&gt; void&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CPSAttribMakerT.html#c0">makeByIterator</a> (It it, void *tab, <a class="el" href="memory__common_8h.html#a11">uint32</a> <a class="el" href="driver__opengl__extension__def_8h.html#a374">stride</a>, <a class="el" href="memory__common_8h.html#a11">uint32</a> numAttrib, bool canOverlapOne) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>generate an attribute by using the given iterator.</em> <a href="#c0">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>template&lt;typename It&gt; void&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CPSAttribMakerT.html#c1">make4ByIterator</a> (It it, void *tab, <a class="el" href="memory__common_8h.html#a11">uint32</a> <a class="el" href="driver__opengl__extension__def_8h.html#a374">stride</a>, <a class="el" href="memory__common_8h.html#a11">uint32</a> numAttrib, bool canOverlapOne) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>The same as make, but it replicate each attribute 4 times, thus filling 4*numAttrib.</em> <a href="#c1">More...</a><em></em></font><br><br></td></tr>
<tr><td nowrap align=right valign=top>template&lt;typename It&gt; void&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CPSAttribMakerT.html#c2">makeNByIterator</a> (It it, void *tab, <a class="el" href="memory__common_8h.html#a11">uint32</a> <a class="el" href="driver__opengl__extension__def_8h.html#a374">stride</a>, <a class="el" href="memory__common_8h.html#a11">uint32</a> numAttrib, <a class="el" href="memory__common_8h.html#a11">uint32</a> nbReplicate, bool canOverlapOne) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>The same as make4, but with n replication instead of 4.</em> <a href="#c2">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_1CPSAttribMakerT.html#c3">make</a> (<a class="el" href="classNL3D_1_1CPSLocated.html">CPSLocated</a> *loc, <a class="el" href="memory__common_8h.html#a11">uint32</a> startIndex, void *tab, <a class="el" href="memory__common_8h.html#a11">uint32</a> <a class="el" href="driver__opengl__extension__def_8h.html#a374">stride</a>, <a class="el" href="memory__common_8h.html#a11">uint32</a> numAttrib, bool allowNoCopy, <a class="el" href="memory__common_8h.html#a11">uint32</a> srcStep) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>Fill tab with an attribute by using the given stride.</em> <a href="#c3">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_1CPSAttribMakerT.html#c4">make4</a> (<a class="el" href="classNL3D_1_1CPSLocated.html">CPSLocated</a> *loc, <a class="el" href="memory__common_8h.html#a11">uint32</a> startIndex, void *tab, <a class="el" href="memory__common_8h.html#a11">uint32</a> <a class="el" href="driver__opengl__extension__def_8h.html#a374">stride</a>, <a class="el" href="memory__common_8h.html#a11">uint32</a> numAttrib, <a class="el" href="memory__common_8h.html#a11">uint32</a> srcStep) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>The same as make, but it replicate each attribute 4 times, thus filling 4*numAttrib.</em> <a href="#c4">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_1CPSAttribMakerT.html#c5">makeN</a> (<a class="el" href="classNL3D_1_1CPSLocated.html">CPSLocated</a> *loc, <a class="el" href="memory__common_8h.html#a11">uint32</a> startIndex, void *tab, <a class="el" href="memory__common_8h.html#a11">uint32</a> <a class="el" href="driver__opengl__extension__def_8h.html#a374">stride</a>, <a class="el" href="memory__common_8h.html#a11">uint32</a> numAttrib, <a class="el" href="memory__common_8h.html#a11">uint32</a> nbReplicate, <a class="el" href="memory__common_8h.html#a11">uint32</a> srcStep) const</td></tr>
<tr><td>&nbsp;</td><td><font size=-1><em>The same as make4, but with n replication instead of 4.</em> <a href="#c5">More...</a><em></em></font><br><br></td></tr>
<tr><td colspan=2><br><h2>Private Attributes</h2></td></tr>
<tr><td nowrap align=right valign=top><a class="el" href="structNL3D_1_1CPSInputType.html">CPSInputType</a>&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CPSAttribMakerT.html#o0">_InputType</a></td></tr>
<tr><td nowrap align=right valign=top>bool&nbsp;</td><td valign=bottom><a class="el" href="classNL3D_1_1CPSAttribMakerT.html#o1">_Clamp</a></td></tr>
</table>
<hr><a name="_details"></a><h2>Detailed Description</h2>
<h3>template&lt;typename T, class F&gt;<br>
 class NL3D::CPSAttribMakerT&lt; T, F &gt;</h3>

This template generate an attrib maker by defining the methods of the CPSCAttribMaker class.
<p>
You can derive your own class  but it is a shortcut to do the job <dl compact><dt><b>
Parameters: </b><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em>T</em>&nbsp;</td><td>
: the type to produce </td></tr>
<tr><td valign=top><em>F</em>&nbsp;</td><td>
: a class that override the () operator, the input is chosen by the user (age, speed ...)  , and the output is the same type as T. Inline is preferable, as it will be called a lot  It can stores info that indicate how to build it </td></tr>
</table>
</dl>
<p>

<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00051">51</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.<hr><h2>Member Typedef Documentation</h2>
<a name="s1" doxytag="NL3D::CPSAttribMakerT::functor_type"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> typedef F NL3D::CPSAttribMakerT::functor_type
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
the type of the functor object.
<p>

<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00174">174</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<a name="s0" doxytag="NL3D::CPSAttribMakerT::value_type"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> typedef T NL3D::CPSAttribMakerT::value_type
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
the type of the attribute to be produced.
<p>

<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00171">171</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<hr><h2>Constructor &amp; Destructor Documentation</h2>
<a name="a3" doxytag="NL3D::CPSAttribMakerT::CPSAttribMakerT"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> NL3D::CPSAttribMakerT&lt; T, F &gt;::CPSAttribMakerT </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">float&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp; <em>nbCycles</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>
construct the attrib maker specifying the number of cycles to do.
<p>
<dl compact><dt><b>
See also: </b><dd>
<a class="el" href="classNL3D_1_1CPSAttribMaker.html#z708_0">setNbCycles</a>() </dl>
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00128">128</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<a name="a4" doxytag="NL3D::CPSAttribMakerT::~CPSAttribMakerT"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> virtual NL3D::CPSAttribMakerT&lt; T, F &gt;::~CPSAttribMakerT </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="ps__attrib__maker__helper_8h-source.html#l00133">133</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<hr><h2>Member Function Documentation</h2>
<a name="a1" doxytag="NL3D::CPSAttribMakerT::get"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> virtual T NL3D::CPSAttribMakerT&lt; T, F &gt;::get </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">float&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp; <em>input</em>          </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>
Direct lookup of the result value from a float input (if it makes sense).
<p>
This bypass what was set with setInput The input must be in [0, 1[ 
<p>
Reimplemented from <a class="el" href="classNL3D_1_1CPSAttribMaker.html#z707_1">NL3D::CPSAttribMaker</a>.
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00060">60</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<a name="a0" doxytag="NL3D::CPSAttribMakerT::get"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> T NL3D::CPSAttribMakerT&lt; T, F &gt;::get </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="classNL3D_1_1CPSLocated.html">CPSLocated</a> *&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>loc</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>index</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"><code> [virtual]</code></td>
        </tr>

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

<p>
compute one value of the attribute for the given index.
<p>

<p>
Implements <a class="el" href="classNL3D_1_1CPSAttribMaker.html#z707_0">NL3D::CPSAttribMaker</a>.
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l01172">1172</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.
<p>
References <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00055">_F</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00179">_InputType</a>, <a class="el" href="ps__attrib__maker_8h-source.html#l00294">NL3D::CPSAttribMaker::_NbCycles</a>, <a class="el" href="driver__opengl__extension__def_8h-source.html#l00222">index</a>, <a class="el" href="ps__attrib__maker_8h-source.html#l00096">NL3D::MaxInputValue</a>, <a class="el" href="debug_8h-source.html#l00254">nlassert</a>, <a class="el" href="fast__floor_8h-source.html#l00123">NL3D::OptFastFloorBegin</a>, <a class="el" href="fast__floor_8h-source.html#l00124">NL3D::OptFastFloorEnd</a>, <a class="el" href="fast__floor_8h-source.html#l00130">NL3D::OptFastFractionnalPart</a>, <a class="el" href="driver__opengl__extension__def_8h-source.html#l00689">r</a>, <a class="el" href="memory__common_8h-source.html#l00100">uint32</a>, and <a class="el" href="driver__opengl__extension__def_8h-source.html#l00234">v</a>.    </td>
  </tr>
</table>
<a name="a10" doxytag="NL3D::CPSAttribMakerT::getClamping"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> virtual bool NL3D::CPSAttribMakerT&lt; T, F &gt;::getClamping </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 if the clamping is enabled.
<p>
<dl compact><dt><b>
See also: </b><dd>
<a class="el" href="classNL3D_1_1CPSAttribMakerT.html#a8">isClampingSupported</a>() </dl>
<p>
Reimplemented from <a class="el" href="classNL3D_1_1CPSAttribMaker.html#z708_7">NL3D::CPSAttribMaker</a>.
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00167">167</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<a name="a7" doxytag="NL3D::CPSAttribMakerT::getInput"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> virtual <a class="el" href="structNL3D_1_1CPSInputType.html">CPSInputType</a> NL3D::CPSAttribMakerT&lt; T, F &gt;::getInput </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>
get the type of input (if supported).
<p>
The default return attrDate <dl compact><dt><b>
See also: </b><dd>
<a class="el" href="classNL3D_1_1CPSAttribMakerT.html#a5">hasCustomInput</a>() </dl>
<p>
Reimplemented from <a class="el" href="classNL3D_1_1CPSAttribMaker.html#z708_4">NL3D::CPSAttribMaker</a>.
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00150">150</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<a name="a5" doxytag="NL3D::CPSAttribMakerT::hasCustomInput"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> virtual bool NL3D::CPSAttribMakerT&lt; T, F &gt;::hasCustomInput </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, virtual]</code></td>
        </tr>

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

<p>
tells wether one may choose one attribute from a <a class="el" href="classNL3D_1_1CPSLocated.html">CPSLocated</a> to use as an input.
<p>
If false, the input(s) is fixed For this class, it is supported 
<p>
Reimplemented from <a class="el" href="classNL3D_1_1CPSAttribMaker.html#z708_2">NL3D::CPSAttribMaker</a>.
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00139">139</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<a name="a8" doxytag="NL3D::CPSAttribMakerT::isClampingSupported"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> bool NL3D::CPSAttribMakerT&lt; T, F &gt;::isClampingSupported </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 clamping is supported for the input (value can't go above MaxInputValue).
<p>

<p>
Reimplemented from <a class="el" href="classNL3D_1_1CPSAttribMaker.html#z708_5">NL3D::CPSAttribMaker</a>.
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00155">155</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<a name="c3" doxytag="NL3D::CPSAttribMakerT::make"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> void* NL3D::CPSAttribMakerT&lt; T, F &gt;::make </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="classNL3D_1_1CPSLocated.html">CPSLocated</a> *&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>loc</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>startIndex</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap>void *&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>tab</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>stride</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>numAttrib</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap>bool&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>allowNoCopy</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>srcStep</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"> const<code> [inline, private, virtual]</code></td>
        </tr>

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

<p>
Fill tab with an attribute by using the given stride.
<p>
It fills numAttrib attributes. <dl compact><dt><b>
Parameters: </b><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em>loc</em>&nbsp;</td><td>
the 'located' that hold the 'located bindable' that need an attribute to be filled </td></tr>
<tr><td valign=top><em>startIndex</em>&nbsp;</td><td>
usually 0, it gives the index of the first element in the located (is it multiplied by the step) </td></tr>
<tr><td valign=top><em>tab</em>&nbsp;</td><td>
where the data will be written </td></tr>
<tr><td valign=top><em>stride</em>&nbsp;</td><td>
the stride, in byte, between each value to write </td></tr>
<tr><td valign=top><em>numAttrib</em>&nbsp;</td><td>
the number of attributes to compute </td></tr>
<tr><td valign=top><em>allowNoCopy</em>&nbsp;</td><td>
data may be already present in memory, and may not need computation. When set to true, this allow no computation to be made the return parameter is then le location of the datas. this may be tab (if recomputation where needed), or another value  for this to work, the stride must most of the time be sizeof(T). This is intended to be used with derivers of <a class="el" href="classNL3D_1_1CPSAttribMaker.html">CPSAttribMaker</a> that store values that do not depend on the input. The make method then just copy the data, we is sometime useless </td></tr>
<tr><td valign=top><em>srcStep</em>&nbsp;</td><td>
A fixed-point 16:16 value that gives the step for the source iterator  </td></tr>
</table>
</dl><dl compact><dt><b>
Returns: </b><dd>
where the data have been copied, this is always tab, unless allowNoCopy is set to true, in which case this may be different </dl>
<p>
Implements <a class="el" href="classNL3D_1_1CPSAttribMaker.html#z707_2">NL3D::CPSAttribMaker</a>.
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00596">596</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<a name="c4" doxytag="NL3D::CPSAttribMakerT::make4"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> void NL3D::CPSAttribMakerT&lt; T, F &gt;::make4 </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="classNL3D_1_1CPSLocated.html">CPSLocated</a> *&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>loc</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>startIndex</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap>void *&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>tab</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>stride</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>numAttrib</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>srcStep</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"> const<code> [inline, private, virtual]</code></td>
        </tr>

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

<p>
The same as make, but it replicate each attribute 4 times, thus filling 4*numAttrib.
<p>
Useful for facelookat and the like <dl compact><dt><b>
See also: </b><dd>
<a class="el" href="classNL3D_1_1CPSAttribMakerT.html#c3">make</a>() </dl>
<p>
Implements <a class="el" href="classNL3D_1_1CPSAttribMaker.html#z707_3">NL3D::CPSAttribMaker</a>.
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00790">790</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<a name="c1" doxytag="NL3D::CPSAttribMakerT::make4ByIterator"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" colspan="4">
template&lt;typename It&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> void NL3D::CPSAttribMakerT&lt; T, F &gt;::make4ByIterator </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">It&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>it</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap>void *&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>tab</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>stride</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>numAttrib</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap>bool&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>canOverlapOne</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"> const<code> [inline, private]</code></td>
        </tr>

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

<p>
The same as make, but it replicate each attribute 4 times, thus filling 4*numAttrib.
<p>
Useful for facelookat and the like <dl compact><dt><b>
Parameters: </b><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em>canOverlapOne</em>&nbsp;</td><td>
must be true if the entry iterator can give values above 1 </td></tr>
</table>
</dl><dl compact><dt><b>
See also: </b><dd>
<a class="el" href="classNL3D_1_1CPSAttribMakerT.html#c0">makeByIterator</a>() </dl>
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00293">293</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.
<p>
Referenced by <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00790">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::make4</a>.    </td>
  </tr>
</table>
<a name="c0" doxytag="NL3D::CPSAttribMakerT::makeByIterator"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" colspan="4">
template&lt;typename It&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> void NL3D::CPSAttribMakerT&lt; T, F &gt;::makeByIterator </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">It&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>it</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap>void *&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>tab</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>stride</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>numAttrib</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap>bool&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>canOverlapOne</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"> const<code> [inline, private]</code></td>
        </tr>

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

<p>
generate an attribute by using the given iterator.
<p>
this allow to choose the input of tha attribute maker <dl compact><dt><b>
Parameters: </b><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em>canOverlapOne</em>&nbsp;</td><td>
must be true if the entry iterator can give values above 1 the attribute maker with no speed penalty </td></tr>
</table>
</dl>
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00191">191</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.
<p>
Referenced by <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00596">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::make</a>.    </td>
  </tr>
</table>
<a name="c5" doxytag="NL3D::CPSAttribMakerT::makeN"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> virtual void NL3D::CPSAttribMakerT&lt; T, F &gt;::makeN </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="classNL3D_1_1CPSLocated.html">CPSLocated</a> *&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>loc</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>startIndex</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap>void *&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>tab</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>stride</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>numAttrib</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>nbReplicate</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>srcStep</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"> const<code> [inline, private, virtual]</code></td>
        </tr>

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

<p>
The same as make4, but with n replication instead of 4.
<p>
<dl compact><dt><b>
See also: </b><dd>
<a class="el" href="classNL3D_1_1CPSAttribMakerT.html#c4">make4</a> </dl>
<p>
Implements <a class="el" href="classNL3D_1_1CPSAttribMaker.html#z707_4">NL3D::CPSAttribMaker</a>.
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00978">978</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<a name="c2" doxytag="NL3D::CPSAttribMakerT::makeNByIterator"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" colspan="4">
template&lt;typename It&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> void NL3D::CPSAttribMakerT&lt; T, F &gt;::makeNByIterator </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">It&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>it</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap>void *&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>tab</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>stride</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>numAttrib</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="memory__common_8h.html#a11">uint32</a>&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>nbReplicate</em>, </td>
        </tr>
        <tr>
          <td></td>
          <td></td>
          <td class="md" nowrap>bool&nbsp;</td>
          <td class="mdname" nowrap>&nbsp; <em>canOverlapOne</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"> const<code> [inline, private]</code></td>
        </tr>

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

<p>
The same as make4, but with n replication instead of 4.
<p>
<dl compact><dt><b>
Parameters: </b><dd>
<table border=0 cellspacing=2 cellpadding=0>
<tr><td valign=top><em>canOverlapOne</em>&nbsp;</td><td>
must be true if the entry iterator can give values above 1 </td></tr>
</table>
</dl><dl compact><dt><b>
See also: </b><dd>
<a class="el" href="classNL3D_1_1CPSAttribMakerT.html#c1">make4ByIterator</a> </dl>
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00448">448</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.
<p>
Referenced by <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00978">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::makeN</a>.    </td>
  </tr>
</table>
<a name="a2" doxytag="NL3D::CPSAttribMakerT::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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> virtual void NL3D::CPSAttribMakerT&lt; T, F &gt;::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> [inline, virtual]</code></td>
        </tr>

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

<p>
serialisation of the object.
<p>
<dl compact><dt><b>
See also: </b><dd>
<a class="el" href="classNL3D_1_1CPSAttribMakerT.html#c4">make4</a> </dl>
<p>
Reimplemented from <a class="el" href="classNL3D_1_1CPSAttribMaker.html#z706_1">NL3D::CPSAttribMaker</a>.
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00104">104</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<a name="a9" doxytag="NL3D::CPSAttribMakerT::setClamping"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> virtual void NL3D::CPSAttribMakerT&lt; T, F &gt;::setClamping </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>enable</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>
Enable, disable the clamping of input values.
<p>
<dl compact><dt><b>
See also: </b><dd>
<a class="el" href="classNL3D_1_1CPSAttribMakerT.html#a8">isClampingSupported</a>() </dl>
<p>
Reimplemented from <a class="el" href="classNL3D_1_1CPSAttribMaker.html#z708_6">NL3D::CPSAttribMaker</a>.
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00161">161</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<a name="a6" doxytag="NL3D::CPSAttribMakerT::setInput"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> virtual void NL3D::CPSAttribMakerT&lt; T, F &gt;::setInput </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="structNL3D_1_1CPSInputType.html">CPSInputType</a> &amp;&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>&nbsp; <em>input</em>          </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>
set a new input type.
<p>

<p>
Reimplemented from <a class="el" href="classNL3D_1_1CPSAttribMaker.html#z708_3">NL3D::CPSAttribMaker</a>.
<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00144">144</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.    </td>
  </tr>
</table>
<hr><h2>Member Data Documentation</h2>
<a name="o1" doxytag="NL3D::CPSAttribMakerT::_Clamp"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> bool NL3D::CPSAttribMakerT::_Clamp<code> [private]</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="ps__attrib__maker__helper_8h-source.html#l00182">182</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.
<p>
Referenced by <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00128">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::CPSAttribMakerT</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00167">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::getClamping</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00293">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::make4ByIterator</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00191">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::makeByIterator</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00448">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::makeNByIterator</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00104">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::serial</a>, and <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00161">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::setClamping</a>.    </td>
  </tr>
</table>
<a name="m0" doxytag="NL3D::CPSAttribMakerT::_F"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> F NL3D::CPSAttribMakerT::_F
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
the functor object.
<p>

<p>
Definition at line <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00055">55</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.
<p>
Referenced by <a class="el" href="ps__attrib__maker__helper_8h-source.html#l01172">get</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00060">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::get</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00293">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::make4ByIterator</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00191">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::makeByIterator</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00448">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::makeNByIterator</a>, and <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00104">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::serial</a>.    </td>
  </tr>
</table>
<a name="o0" doxytag="NL3D::CPSAttribMakerT::_InputType"></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" colspan="4">
template&lt;typename T, class F&gt; </td>
        </tr>
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="structNL3D_1_1CPSInputType.html">CPSInputType</a> NL3D::CPSAttribMakerT::_InputType<code> [private]</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="ps__attrib__maker__helper_8h-source.html#l00179">179</a> of file <a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</a>.
<p>
Referenced by <a class="el" href="ps__attrib__maker__helper_8h-source.html#l01172">get</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00150">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::getInput</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00596">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::make</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00790">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::make4</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00978">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::makeN</a>, <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00104">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::serial</a>, and <a class="el" href="ps__attrib__maker__helper_8h-source.html#l00144">NL3D::CPSAttribMakerT&lt; uint32, CPSValueBlendFunc&lt; uint32 &gt; &gt;::setInput</a>.    </td>
  </tr>
</table>
<hr>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="ps__attrib__maker__helper_8h-source.html">ps_attrib_maker_helper.h</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>