-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault_Displacement.html
More file actions
2944 lines (2401 loc) · 135 KB
/
Default_Displacement.html
File metadata and controls
2944 lines (2401 loc) · 135 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Default Displacement - V-Ray 5 for 3ds Max</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=2.0, user-scalable=yes">
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.scrollTo.min.js"></script>
<script type="text/javascript" src="assets/js/scroll-tree.js"></script>
<script type="text/javascript" src="assets/js/theme.main.js"></script>
<link rel="stylesheet" href="assets/css/content-style.css">
<link rel="stylesheet" href="assets/css/search.css">
<link rel="stylesheet" href="assets/css/theme.main.css">
<link rel="stylesheet" href="assets/css/theme.colors.css">
<!-- ES5 support for older browsers, needed by lunr -->
<script src="js/augment.js"></script>
<script id="worker" type="javascript/worker">
startIndex = function() {
idx = lunr.Index.load(lunrIndex);
idx.pipeline.remove(lunr.stopWordFilter);
postMessage({type: "setup-complete"});
}
onmessage = function (event) {
var message = event.data;
if ((message.type === 'setup') && message.baseUrl) {
var url = message.baseUrl;
importScripts(url + 'js/lunr.js');
importScripts(url + 'js/lunr-extras.js');
importScripts(url + 'js/lunr-index.js');
importScripts(url + 'js/lunr-data.js');
startIndex();
}
if (idx && (message.type === 'search-request') && message.query) {
var searchWord = message.query;
var results = idx.search(searchWord).map(function (result) {
return lunrData.filter(function (d) {
return d.id === parseInt(result.ref, 10)
})[0]
});
postMessage({type: 'search-results', results: results, query: searchWord, queryId: message.queryId});
}
}
</script>
</head>
<body pageid="60096687">
<div id="ht-loader">
<noscript>
<p style="width: 100%; text-align:center; position: absolute; margin-top: 200px;">This content cannot be displayed without JavaScript.<br>Please enable JavaScript and reload the page.</p>
</noscript>
</div>
<div>
<header id="ht-headerbar">
<div class="ht-headerbar-left">
<a href="" id="ht-menu-toggle" class="sp-aui-icon-small sp-aui-iconfont-appswitcher"></a>
</div>
<div class="ht-headerbar-right">
<div class="sp-aui-icon-small ht-search-index-loader ht-header-icon"></div>
<div id="ht-search">
<div class="ht-search-input" style="display: none;">
<a href="#" class="sp-aui-icon-small sp-aui-iconfont-remove ht-search-clear"></a>
<form action="#" method="GET" id="search">
<input class="search-input" type="text" placeholder="Search" tabindex="-1" autocomplete="off" name="q" value="">
<input type="hidden" name="max" value="15" />
<input type="submit" style="display:none" tabindex="-4"/>
</form>
<a href="#" id="ht-search-button" class="ht-header-icon ht-header-icon-svg">
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g>
<path d="M29.572,28.802 L28.801,29.571 C28.515,29.857 28.187,30 27.816,30 C27.445,30 27.116,29.857 26.831,29.571 L21.392,24.134 C20.193,24.762 18.908,25.076 17.538,25.076 C15.396,25.076 13.605,24.348 12.163,22.892 C10.721,21.436 10,19.651 10,17.538 C10,15.397 10.721,13.605 12.163,12.163 C13.605,10.721 15.396,10 17.538,10 C19.651,10 21.434,10.721 22.89,12.163 C24.347,13.605 25.075,15.397 25.075,17.538 C25.075,18.937 24.761,20.222 24.132,21.393 L29.572,26.832 C29.857,27.118 30,27.446 30,27.817 C30,28.188 29.857,28.517 29.572,28.802 L29.572,28.802 Z M13.662,21.414 C14.732,22.485 16.024,23.02 17.538,23.02 C19.051,23.02 20.343,22.485 21.413,21.414 C22.484,20.344 23.019,19.052 23.019,17.538 C23.019,16.025 22.484,14.733 21.413,13.662 C20.343,12.592 19.051,12.056 17.538,12.056 C16.024,12.056 14.732,12.592 13.662,13.662 C12.591,14.733 12.056,16.025 12.056,17.538 C12.056,19.052 12.591,20.344 13.662,21.414 L13.662,21.414 Z"></path>
</g>
</svg>
</a>
<div class="ht-search-dropdown ht-dropdown">
<ul></ul>
</div>
</div>
</div>
</div>
</header> <aside id="ht-sidebar">
<div class="ht-sidebar-content">
<div class="ht-sidebar-content-scroll-container">
<header class="ht-sidebar-header">
<h1 class="ht-logo">
<span class="ht-logo-label">VMAX</span>
<img class="space-logo" src="spacelogo.png" />
</h1>
<a href="V-Ray_for_3ds_Max_Help.html" class="ht-space-link">
<h2>V-Ray 5 for 3ds Max</h2>
</a>
</header>
<nav class="ht-pages-nav">
<ul class="ht-pages-nav-top">
<li class="collapsed">
<a class="ht-nav-page-link" href="What's_New.html">What's New</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="What's_New_in_V-Ray_5,_update_2.html">What's New in V-Ray 5, update 2</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="What's_New_in_V-Ray_5,_update_1.html">What's New in V-Ray 5, update 1</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="What's_New_in_V-Ray_5_Release.html">What's New in V-Ray 5 Release</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="What's_New_in_V-Ray_5,_Beta_2.html">What's New in V-Ray 5, Beta 2</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="What's_New_in_V-Ray_5,_Beta.html">What's New in V-Ray 5, Beta</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Release_Notes.html">Release Notes</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_5.html">V-Ray 5</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Previous_Versions.html">Previous Versions</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Next,_Update_3.2.html">V-Ray Next, Update 3.2</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Next,_Update_3.1.html">V-Ray Next, Update 3.1</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Next,_Update_3.html">V-Ray Next, Update 3</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Next,_Update_2.1.html">V-Ray Next, Update 2.1</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Next,_Update_2.html">V-Ray Next, Update 2</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Next_Update_1.2.html">V-Ray Next Update 1.2</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Next,_Update_1.1.html">V-Ray Next, Update 1.1</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Next,_Update_1.html">V-Ray Next, Update 1</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Next,_Hotfix_1.html">V-Ray Next, Hotfix 1</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Next.html">V-Ray Next</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Next,_Beta_3_for_3ds_Max.html">V-Ray Next, Beta 3 for 3ds Max</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Next,_Beta_2_for_3ds_Max.html">V-Ray Next, Beta 2 for 3ds Max</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Next,_Beta_1_for_3ds_Max.html">V-Ray Next, Beta 1 for 3ds Max</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.70.01.html">3.70.01</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.60.05.html">3.60.05</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.60.04.html">3.60.04</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.60.03.html">3.60.03</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.60.02.html">3.60.02</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.60.01.html">3.60.01</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.50.04.html">3.50.04</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.50.03.html">3.50.03</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.50.02.html">3.50.02</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.50.01.html">3.50.01</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.40.03.html">3.40.03</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.40.02.html">3.40.02</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.40.01.html">3.40.01</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.30.05.html">3.30.05</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.30.04.html">3.30.04</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.30.03.html">3.30.03</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.30.02.html">3.30.02</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.30.01.html">3.30.01</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.20.03.html">3.20.03</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.20.02.html">3.20.02</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.20.01.html">3.20.01</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.10.03.html">3.10.03</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.10.02.html">3.10.02</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.10.01.html">3.10.01</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.05.04.html">3.05.04</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.05.03.html">3.05.03</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.05.02.html">3.05.02</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.05.01.html">3.05.01</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.00.08.html">3.00.08</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.00.07.html">3.00.07</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.00.06.html">3.00.06</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.00.05.html">3.00.05</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.00.04.html">3.00.04</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.00.03.html">3.00.03</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.00.02.html">3.00.02</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="3.00.01.html">3.00.01</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_with_Older_Assets.html">Rendering with Older Assets</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Installation_and_Licensing.html">Installation and Licensing</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="System_Requirements.html">System Requirements</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Installation.html">Installation</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_for_3ds_Max_Autodesk_application_package.html">V-Ray for 3ds Max Autodesk application package</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Free_Trial.html">Free Trial</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Licensing.html">Licensing</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Installing_the_License_Server.html">Installing the License Server</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Changing_your_License_Settings.html">Changing your License Settings</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Borrowing_Licenses_for_Offline_Use.html">Borrowing Licenses for Offline Use</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Advanced_Licensing_Settings.html">Advanced Licensing Settings</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Dongle_usage.html">Dongle usage</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Installing_the_Dongle_Drivers.html">Installing the Dongle Drivers</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Re-installing_the_Dongle_Drivers.html">Re-installing the Dongle Drivers</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Dongle_Reprogramming.html">Dongle Reprogramming</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Dongle_FAQ.html">Dongle FAQ</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Chaos_Telemetry.html">Chaos Telemetry</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="License_Agreements_and_Copyrights.html">License Agreements and Copyrights</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="End_User_License_Agreement.html">End User License Agreement</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Credits_and_Copyrights.html">Credits and Copyrights</a>
</li>
</ul>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Silent_Install_and_Uninstall.html">Silent Install and Uninstall</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Running_V-Ray_from_an_Arbitrary_Location.html">Running V-Ray from an Arbitrary Location</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="How_to_Uninstall_V-Ray.html">How to Uninstall V-Ray</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_App_SDK.html">V-Ray App SDK</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_SDK.html">V-Ray SDK</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Tutorials.html">Tutorials</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="QuickStart_Guides.html">QuickStart Guides</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Universal_V-Ray_Settings.html">Universal V-Ray Settings</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Interior_Render_Settings.html">Interior Render Settings</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Basic_Texture_Baking_with_V-Ray.html">Basic Texture Baking with V-Ray</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_Specific_Objects_with_Render_Mask.html">Rendering Specific Objects with Render Mask</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_Very_Large_Images.html">Rendering Very Large Images</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_with_V-Ray_GPU_directly_to_VR_Headsets.html">Rendering with V-Ray GPU directly to VR Headsets</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Continue_a_Render_with_Resumable_Rendering.html">Continue a Render with Resumable Rendering</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Using_Custom_Attributes_to_Match_Proxy_and_Material.html">Using Custom Attributes to Match Proxy and Material</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Setting_Different_Environment_Priorities_to_Environment_Maps.html">Setting Different Environment Priorities to Environment Maps</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="How_To_Make_Glass.html">How To Make Glass</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="How_to_Make_Water.html">How to Make Water</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="How_to_Make_Paper.html">How to Make Paper</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="How_to_Make_Hardwood_Floor.html">How to Make Hardwood Floor</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="How_to_Make_Leaves.html">How to Make Leaves</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="How_to_Make_Translucent_Fabric.html">How to Make Translucent Fabric</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="How_to_Make_Translucent_Plastic.html">How to Make Translucent Plastic</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="How_to_Make_Rocks_with_VRayTriplanarTex.html">How to Make Rocks with VRayTriplanarTex</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="How_to_Мake_Gemstone_Figurine_with_VRayMtl’s_Translucency.html">How to Мake Gemstone Figurine with VRayMtl’s Translucency</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Creating_Wax_Material_with_VRayFastSSS2.html">Creating Wax Material with VRayFastSSS2</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayHairInfoTex_Setup.html">VRayHairInfoTex Setup</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Creating_Car_Paint_with_VRayStochasticFlakesMtl.html">Creating Car Paint with VRayStochasticFlakesMtl</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Creating_Snow_with_VRayStochasticFlakesMtl.html">Creating Snow with VRayStochasticFlakesMtl</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_Mudbox_Vector_Displacement.html">Rendering Mudbox Vector Displacement</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_ZBrush_Displacement.html">Rendering ZBrush Displacement</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_PTex_Textures_from_Mudbox.html">Rendering PTex Textures from Mudbox</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_Vector_Displacement_with_Object-Space_PTex.html">Rendering Vector Displacement with Object-Space PTex</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_MDL_Textures_from_Substance_Designer.html">Rendering MDL Textures from Substance Designer</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Houdini_to_3ds_Max_Alembic_Workflow.html">Houdini to 3ds Max Alembic Workflow</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Chapter_1_-_Poly_Geometry.html">Chapter 1 - Poly Geometry</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Chapter_2_-_Particles.html">Chapter 2 - Particles</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Chapter_3_-_Hair.html">Chapter 3 - Hair</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Chapter_4_-_Crowd_Agents.html">Chapter 4 - Crowd Agents</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Chapter_5_-_FLIP_Fluids.html">Chapter 5 - FLIP Fluids</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Houdini_to_3ds_Max_Open_VDB_workflow.html">Houdini to 3ds Max Open VDB workflow</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Chapter_1_-_Basic_Fire_Smoke_Simulation.html">Chapter 1 - Basic Fire/Smoke Simulation</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Chapter_2_-_Smoke_Simulation_with_Custom_Cd_in_the_RGB_field.html">Chapter 2 - Smoke Simulation with Custom Cd in the RGB field</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Chapter_3_-_Equalizing_the_Pyro_shader_and_the_V-Ray_Volume_Grid_settings.html">Chapter 3 - Equalizing the Pyro shader and the V-Ray Volume Grid settings</a>
</li>
</ul>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Shadow_Catcher.html">V-Ray Shadow Catcher</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Creating_God_Rays_Effect.html">Creating God Rays Effect</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="ACEScg_Workflow_Setup.html">ACEScg Workflow Setup</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="V-Ray_Render_Settings.html">V-Ray Render Settings</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="collapsed">
<a class="ht-nav-page-link" href="V-Ray_FAQ.html">V-Ray FAQ</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Creating_Dump_Files.html">Creating Dump Files</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="V-Ray_tab.html">V-Ray tab</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Frame_Buffer_Settings.html">Frame Buffer Settings</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Global_Switches.html">Global Switches</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="IPR_Options.html">IPR Options</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Image_Sampler.html">Image Sampler</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Progressive_Image_Sampler.html">Progressive Image Sampler</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Bucket_Image_Sampler.html">Bucket Image Sampler</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Image_Filter.html">Image Filter</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Environment_Settings.html">Environment Settings</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Color_Mapping.html">Color Mapping</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Camera.html">Camera</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="GI_tab.html">GI tab</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Global_Illumination_Rollout.html">Global Illumination Rollout</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Light_Cache_Settings.html">Light Cache Settings</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Irradiance_Map_Settings.html">Irradiance Map Settings</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Caustics.html">Caustics</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Settings_tab.html">Settings tab</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Authorization.html">Authorization</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Color_Management.html">Color Management</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link current" href="Default_Displacement.html">Default Displacement</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="System.html">System</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Presets.html">Presets</a>
</li>
</ul>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Tiled_Textures_Options.html">Tiled Textures Options</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Proxy_Preview_Cache.html">Proxy Preview Cache</a>
</li>
</ul>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Render_Elements_tab.html">Render Elements tab</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="V-Ray_GPU_Render_Settings.html">V-Ray GPU Render Settings</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>