x_ite 8.3.2 → 8.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/pages-deploy.yml +1 -1
- package/.vscode/settings.json +2 -1
- package/dist/LICENSE.md +4 -4
- package/dist/assets/components/Annotation.js +13 -13
- package/dist/assets/components/Annotation.min.js +1 -1
- package/dist/assets/components/CADGeometry.js +13 -13
- package/dist/assets/components/CADGeometry.min.js +1 -1
- package/dist/assets/components/CubeMapTexturing.js +25 -25
- package/dist/assets/components/CubeMapTexturing.min.js +1 -1
- package/dist/assets/components/DIS.js +13 -13
- package/dist/assets/components/DIS.min.js +1 -1
- package/dist/assets/components/EventUtilities.js +9 -9
- package/dist/assets/components/EventUtilities.min.js +1 -1
- package/dist/assets/components/Geometry2D.js +19 -19
- package/dist/assets/components/Geometry2D.min.js +1 -1
- package/dist/assets/components/Geospatial.js +33 -33
- package/dist/assets/components/Geospatial.min.js +1 -1
- package/dist/assets/components/HAnim.js +61 -74
- package/dist/assets/components/HAnim.min.js +1 -1
- package/dist/assets/components/KeyDeviceSensor.js +8 -8
- package/dist/assets/components/KeyDeviceSensor.min.js +1 -1
- package/dist/assets/components/Layout.js +27 -27
- package/dist/assets/components/Layout.min.js +1 -1
- package/dist/assets/components/NURBS.js +24 -24
- package/dist/assets/components/NURBS.min.js +1 -1
- package/dist/assets/components/ParticleSystems.js +23 -23
- package/dist/assets/components/ParticleSystems.min.js +1 -1
- package/dist/assets/components/Picking.js +19 -19
- package/dist/assets/components/Picking.min.js +1 -1
- package/dist/assets/components/RigidBodyPhysics.js +17 -17
- package/dist/assets/components/RigidBodyPhysics.min.js +1 -1
- package/dist/assets/components/Scripting.js +28 -28
- package/dist/assets/components/Scripting.min.js +1 -1
- package/dist/assets/components/Text.js +24 -24
- package/dist/assets/components/Text.min.js +1 -1
- package/dist/assets/components/{ProjectiveTextureMapping.js → TextureProjector.js} +39 -39
- package/dist/assets/components/TextureProjector.min.js +1 -0
- package/dist/assets/components/Texturing3D.js +27 -27
- package/dist/assets/components/Texturing3D.min.js +1 -1
- package/dist/assets/components/VolumeRendering.js +19 -19
- package/dist/assets/components/VolumeRendering.min.js +1 -1
- package/dist/assets/components/X_ITE.js +9 -9
- package/dist/assets/components/X_ITE.min.js +1 -1
- package/dist/x_ite.css +1 -1
- package/dist/x_ite.js +1492 -1291
- package/dist/x_ite.min.js +1 -1
- package/dist/x_ite.zip +0 -0
- package/docs/Gemfile +1 -4
- package/docs/_config.yml +3 -3
- package/docs/_posts/getting-started.md +147 -441
- package/docs/_posts/reference/scene-services.md +13 -2
- package/docs/_posts/what's-new.md +21 -3
- package/docs/_tabs/playground.html +36 -40
- package/docs/assets/css/style.scss +18 -0
- package/package.json +1 -1
- package/src/assets/components/{ProjectiveTextureMapping.js → TextureProjector.js} +5 -5
- package/src/examples.js +1 -1
- package/src/tests.js +5 -5
- package/src/x_ite/Base/X3DInfoArray.js +21 -21
- package/src/x_ite/Base/X3DObject.js +29 -20
- package/src/x_ite/Base/X3DObjectArrayField.js +27 -26
- package/src/x_ite/Base/X3DTypedArrayField.js +34 -32
- package/src/x_ite/Browser/DOMIntegration.js +4 -3
- package/src/x_ite/Browser/VERSION.js +1 -1
- package/src/x_ite/Browser/X3DBrowser.js +43 -28
- package/src/x_ite/Components/Core/X3DNode.js +196 -187
- package/src/x_ite/Components/Core/X3DPrototypeInstance.js +113 -90
- package/src/x_ite/Components/Grouping/X3DTransformMatrix3DNode.js +18 -43
- package/src/x_ite/Components/HAnim/HAnimHumanoid.js +24 -25
- package/src/x_ite/Components/HAnim/HAnimJoint.js +19 -31
- package/src/x_ite/Components/Sound/X3DSoundProcessingNode.js +14 -1
- package/src/x_ite/Components/Sound/X3DSoundSourceNode.js +0 -1
- package/src/x_ite/Components/{ProjectiveTextureMapping → TextureProjector}/TextureProjector.js +1 -1
- package/src/x_ite/Components/{ProjectiveTextureMapping → TextureProjector}/TextureProjectorParallel.js +1 -1
- package/src/x_ite/Components/{ProjectiveTextureMapping → TextureProjector}/X3DTextureProjectorNode.js +0 -0
- package/src/x_ite/Components/Time/TimeSensor.js +5 -0
- package/src/x_ite/Components/Time/X3DTimeDependentNode.js +1 -0
- package/src/x_ite/Configuration/ComponentInfo.js +20 -23
- package/src/x_ite/Configuration/ProfileInfo.js +6 -6
- package/src/x_ite/Configuration/SupportedComponents.js +22 -20
- package/src/x_ite/Configuration/SupportedProfiles.js +1 -1
- package/src/x_ite/Configuration/UnitInfo.js +24 -27
- package/src/x_ite/Execution/X3DExecutionContext.js +28 -59
- package/src/x_ite/Execution/X3DExportedNode.js +23 -28
- package/src/x_ite/Execution/X3DImportedNode.js +63 -67
- package/src/x_ite/Execution/X3DScene.js +98 -117
- package/src/x_ite/Fields/ArrayFields.js +57 -55
- package/src/x_ite/Fields/SFBool.js +6 -6
- package/src/x_ite/Fields/SFColor.js +10 -12
- package/src/x_ite/Fields/SFDouble.js +7 -10
- package/src/x_ite/Fields/SFFloat.js +7 -10
- package/src/x_ite/Fields/SFImage.js +33 -8
- package/src/x_ite/Fields/SFInt32.js +6 -6
- package/src/x_ite/Fields/SFMatrixPrototypeTemplate.js +13 -13
- package/src/x_ite/Fields/SFNode.js +42 -19
- package/src/x_ite/Fields/SFRotation.js +13 -13
- package/src/x_ite/Fields/SFString.js +6 -7
- package/src/x_ite/Fields/SFTime.js +6 -6
- package/src/x_ite/Fields/SFVecPrototypeTemplate.js +10 -10
- package/src/x_ite/InputOutput/FileLoader.js +1 -1
- package/src/x_ite/InputOutput/Generator.js +117 -17
- package/src/x_ite/Parser/VRMLParser.js +24 -27
- package/src/x_ite/Parser/X3DParser.js +0 -4
- package/src/x_ite/Parser/XMLParser.js +2 -2
- package/src/x_ite/Prototype/X3DExternProtoDeclaration.js +59 -64
- package/src/x_ite/Prototype/X3DProtoDeclaration.js +86 -93
- package/src/x_ite/Rendering/X3DRenderObject.js +6 -1
- package/src/x_ite/Routing/X3DRoute.js +37 -40
- package/src/x_ite.html +1 -1
- package/x_ite.min.html +1 -1
- package/dist/assets/components/ProjectiveTextureMapping.min.js +0 -1
- package/docs/Gemfile.lock +0 -116
|
@@ -27,779 +27,485 @@ If you ever get in trouble, please [report a bug](report-a-bug).
|
|
|
27
27
|
<table class="examples">
|
|
28
28
|
<tr>
|
|
29
29
|
<td>
|
|
30
|
-
<a href="https://create3000.github.io/media/examples/X3D/Apartment/Apartment.x3d" title="X3D » Apartment">
|
|
31
|
-
<img src="https://create3000.github.io/media/examples/X3D/Apartment/screenshot-small.png" alt="Apartment"/>
|
|
32
|
-
</a>
|
|
30
|
+
<a href="https://create3000.github.io/media/examples/X3D/Apartment/Apartment.x3d" title="X3D » Apartment"><img src="https://create3000.github.io/media/examples/X3D/Apartment/screenshot-small.png" alt="Apartment"/></a>
|
|
33
31
|
</td>
|
|
34
32
|
<td>
|
|
35
|
-
<a href="https://create3000.github.io/media/examples/X3D/Approach/Approach.x3d" title="X3D » Approach">
|
|
36
|
-
<img src="https://create3000.github.io/media/examples/X3D/Approach/screenshot-small.png" alt="Approach"/>
|
|
37
|
-
</a>
|
|
33
|
+
<a href="https://create3000.github.io/media/examples/X3D/Approach/Approach.x3d" title="X3D » Approach"><img src="https://create3000.github.io/media/examples/X3D/Approach/screenshot-small.png" alt="Approach"/></a>
|
|
38
34
|
</td>
|
|
39
35
|
<td>
|
|
40
|
-
<a href="https://create3000.github.io/media/examples/X3D/Arcadia/Arcadia.x3d" title="X3D » Arcadia">
|
|
41
|
-
<img src="https://create3000.github.io/media/examples/X3D/Arcadia/screenshot-small.png" alt="Arcadia"/>
|
|
42
|
-
</a>
|
|
36
|
+
<a href="https://create3000.github.io/media/examples/X3D/Arcadia/Arcadia.x3d" title="X3D » Arcadia"><img src="https://create3000.github.io/media/examples/X3D/Arcadia/screenshot-small.png" alt="Arcadia"/></a>
|
|
43
37
|
</td>
|
|
44
38
|
<td>
|
|
45
|
-
<a href="https://create3000.github.io/media/examples/X3D/Astronomy/Astronomy.x3d" title="X3D » Astronomy">
|
|
46
|
-
<img src="https://create3000.github.io/media/examples/X3D/Astronomy/screenshot-small.png" alt="Astronomy"/>
|
|
47
|
-
</a>
|
|
39
|
+
<a href="https://create3000.github.io/media/examples/X3D/Astronomy/Astronomy.x3d" title="X3D » Astronomy"><img src="https://create3000.github.io/media/examples/X3D/Astronomy/screenshot-small.png" alt="Astronomy"/></a>
|
|
48
40
|
</td>
|
|
49
41
|
<td>
|
|
50
|
-
<a href="https://create3000.github.io/media/examples/X3D/BIC/BIC.x3d" title="X3D » BIC">
|
|
51
|
-
<img src="https://create3000.github.io/media/examples/X3D/BIC/screenshot-small.png" alt="BIC"/>
|
|
52
|
-
</a>
|
|
42
|
+
<a href="https://create3000.github.io/media/examples/X3D/BIC/BIC.x3d" title="X3D » BIC"><img src="https://create3000.github.io/media/examples/X3D/BIC/screenshot-small.png" alt="BIC"/></a>
|
|
53
43
|
</td>
|
|
54
44
|
<td>
|
|
55
|
-
<a href="https://create3000.github.io/media/examples/X3D/BeyondGermany/BeyondGermany.x3d" title="X3D » BeyondGermany">
|
|
56
|
-
<img src="https://create3000.github.io/media/examples/X3D/BeyondGermany/screenshot-small.png" alt="BeyondGermany"/>
|
|
57
|
-
</a>
|
|
45
|
+
<a href="https://create3000.github.io/media/examples/X3D/BeyondGermany/BeyondGermany.x3d" title="X3D » BeyondGermany"><img src="https://create3000.github.io/media/examples/X3D/BeyondGermany/screenshot-small.png" alt="BeyondGermany"/></a>
|
|
58
46
|
</td>
|
|
59
47
|
<td>
|
|
60
|
-
<a href="https://create3000.github.io/media/examples/X3D/Chomp/Chomp.x3d" title="X3D » Chomp">
|
|
61
|
-
<img src="https://create3000.github.io/media/examples/X3D/Chomp/screenshot-small.png" alt="Chomp"/>
|
|
62
|
-
</a>
|
|
48
|
+
<a href="https://create3000.github.io/media/examples/X3D/Chomp/Chomp.x3d" title="X3D » Chomp"><img src="https://create3000.github.io/media/examples/X3D/Chomp/screenshot-small.png" alt="Chomp"/></a>
|
|
63
49
|
</td>
|
|
64
50
|
</tr>
|
|
65
51
|
<tr>
|
|
66
52
|
<td>
|
|
67
|
-
<a href="https://create3000.github.io/media/examples/X3D/Circles/Circles.x3d" title="X3D » Circles">
|
|
68
|
-
<img src="https://create3000.github.io/media/examples/X3D/Circles/screenshot-small.png" alt="Circles"/>
|
|
69
|
-
</a>
|
|
53
|
+
<a href="https://create3000.github.io/media/examples/X3D/Circles/Circles.x3d" title="X3D » Circles"><img src="https://create3000.github.io/media/examples/X3D/Circles/screenshot-small.png" alt="Circles"/></a>
|
|
70
54
|
</td>
|
|
71
55
|
<td>
|
|
72
|
-
<a href="https://create3000.github.io/media/examples/X3D/CrazySpiral/CrazySpiral.x3d" title="X3D » CrazySpiral">
|
|
73
|
-
<img src="https://create3000.github.io/media/examples/X3D/CrazySpiral/screenshot-small.png" alt="CrazySpiral"/>
|
|
74
|
-
</a>
|
|
56
|
+
<a href="https://create3000.github.io/media/examples/X3D/CrazySpiral/CrazySpiral.x3d" title="X3D » CrazySpiral"><img src="https://create3000.github.io/media/examples/X3D/CrazySpiral/screenshot-small.png" alt="CrazySpiral"/></a>
|
|
75
57
|
</td>
|
|
76
58
|
<td>
|
|
77
|
-
<a href="https://create3000.github.io/media/examples/X3D/Currencies/Currencies.x3d" title="X3D » Currencies">
|
|
78
|
-
<img src="https://create3000.github.io/media/examples/X3D/Currencies/screenshot-small.png" alt="Currencies"/>
|
|
79
|
-
</a>
|
|
59
|
+
<a href="https://create3000.github.io/media/examples/X3D/Currencies/Currencies.x3d" title="X3D » Currencies"><img src="https://create3000.github.io/media/examples/X3D/Currencies/screenshot-small.png" alt="Currencies"/></a>
|
|
80
60
|
</td>
|
|
81
61
|
<td>
|
|
82
|
-
<a href="https://create3000.github.io/media/examples/X3D/FlashingLights/FlashingLights.x3d" title="X3D » FlashingLights">
|
|
83
|
-
<img src="https://create3000.github.io/media/examples/X3D/FlashingLights/screenshot-small.png" alt="FlashingLights"/>
|
|
84
|
-
</a>
|
|
62
|
+
<a href="https://create3000.github.io/media/examples/X3D/FlashingLights/FlashingLights.x3d" title="X3D » FlashingLights"><img src="https://create3000.github.io/media/examples/X3D/FlashingLights/screenshot-small.png" alt="FlashingLights"/></a>
|
|
85
63
|
</td>
|
|
86
64
|
<td>
|
|
87
|
-
<a href="https://create3000.github.io/media/examples/X3D/FoldUp/FoldUp.x3d" title="X3D » FoldUp">
|
|
88
|
-
<img src="https://create3000.github.io/media/examples/X3D/FoldUp/screenshot-small.png" alt="FoldUp"/>
|
|
89
|
-
</a>
|
|
65
|
+
<a href="https://create3000.github.io/media/examples/X3D/FoldUp/FoldUp.x3d" title="X3D » FoldUp"><img src="https://create3000.github.io/media/examples/X3D/FoldUp/screenshot-small.png" alt="FoldUp"/></a>
|
|
90
66
|
</td>
|
|
91
67
|
<td>
|
|
92
|
-
<a href="https://create3000.github.io/media/examples/X3D/LogoPieces/LogoPieces.x3d" title="X3D » LogoPieces">
|
|
93
|
-
<img src="https://create3000.github.io/media/examples/X3D/LogoPieces/screenshot-small.png" alt="LogoPieces"/>
|
|
94
|
-
</a>
|
|
68
|
+
<a href="https://create3000.github.io/media/examples/X3D/LogoPieces/LogoPieces.x3d" title="X3D » LogoPieces"><img src="https://create3000.github.io/media/examples/X3D/LogoPieces/screenshot-small.png" alt="LogoPieces"/></a>
|
|
95
69
|
</td>
|
|
96
70
|
<td>
|
|
97
|
-
<a href="https://create3000.github.io/media/examples/X3D/LustForLife/LustForLife.x3d" title="X3D » LustForLife">
|
|
98
|
-
<img src="https://create3000.github.io/media/examples/X3D/LustForLife/screenshot-small.png" alt="LustForLife"/>
|
|
99
|
-
</a>
|
|
71
|
+
<a href="https://create3000.github.io/media/examples/X3D/LustForLife/LustForLife.x3d" title="X3D » LustForLife"><img src="https://create3000.github.io/media/examples/X3D/LustForLife/screenshot-small.png" alt="LustForLife"/></a>
|
|
100
72
|
</td>
|
|
101
73
|
</tr>
|
|
102
74
|
<tr>
|
|
103
75
|
<td>
|
|
104
|
-
<a href="https://create3000.github.io/media/examples/X3D/MagicMushrooms/MagicMushrooms.x3d" title="X3D » MagicMushrooms">
|
|
105
|
-
<img src="https://create3000.github.io/media/examples/X3D/MagicMushrooms/screenshot-small.png" alt="MagicMushrooms"/>
|
|
106
|
-
</a>
|
|
76
|
+
<a href="https://create3000.github.io/media/examples/X3D/MagicMushrooms/MagicMushrooms.x3d" title="X3D » MagicMushrooms"><img src="https://create3000.github.io/media/examples/X3D/MagicMushrooms/screenshot-small.png" alt="MagicMushrooms"/></a>
|
|
107
77
|
</td>
|
|
108
78
|
<td>
|
|
109
|
-
<a href="https://create3000.github.io/media/examples/X3D/MilkyWayAndBeyond/MilkyWayAndBeyond.x3d" title="X3D » MilkyWayAndBeyond">
|
|
110
|
-
<img src="https://create3000.github.io/media/examples/X3D/MilkyWayAndBeyond/screenshot-small.png" alt="MilkyWayAndBeyond"/>
|
|
111
|
-
</a>
|
|
79
|
+
<a href="https://create3000.github.io/media/examples/X3D/MilkyWayAndBeyond/MilkyWayAndBeyond.x3d" title="X3D » MilkyWayAndBeyond"><img src="https://create3000.github.io/media/examples/X3D/MilkyWayAndBeyond/screenshot-small.png" alt="MilkyWayAndBeyond"/></a>
|
|
112
80
|
</td>
|
|
113
81
|
<td>
|
|
114
|
-
<a href="https://create3000.github.io/media/examples/X3D/NYC/NYC.x3d" title="X3D » NYC">
|
|
115
|
-
<img src="https://create3000.github.io/media/examples/X3D/NYC/screenshot-small.png" alt="NYC"/>
|
|
116
|
-
</a>
|
|
82
|
+
<a href="https://create3000.github.io/media/examples/X3D/NYC/NYC.x3d" title="X3D » NYC"><img src="https://create3000.github.io/media/examples/X3D/NYC/screenshot-small.png" alt="NYC"/></a>
|
|
117
83
|
</td>
|
|
118
84
|
<td>
|
|
119
|
-
<a href="https://create3000.github.io/media/examples/X3D/Pong/Pong.x3d" title="X3D » Pong">
|
|
120
|
-
<img src="https://create3000.github.io/media/examples/X3D/Pong/screenshot-small.png" alt="Pong"/>
|
|
121
|
-
</a>
|
|
85
|
+
<a href="https://create3000.github.io/media/examples/X3D/Pong/Pong.x3d" title="X3D » Pong"><img src="https://create3000.github.io/media/examples/X3D/Pong/screenshot-small.png" alt="Pong"/></a>
|
|
122
86
|
</td>
|
|
123
87
|
<td>
|
|
124
|
-
<a href="https://create3000.github.io/media/examples/X3D/SecretLabyrinth/SecretLabyrinth.x3d" title="X3D » SecretLabyrinth">
|
|
125
|
-
<img src="https://create3000.github.io/media/examples/X3D/SecretLabyrinth/screenshot-small.png" alt="SecretLabyrinth"/>
|
|
126
|
-
</a>
|
|
88
|
+
<a href="https://create3000.github.io/media/examples/X3D/SecretLabyrinth/SecretLabyrinth.x3d" title="X3D » SecretLabyrinth"><img src="https://create3000.github.io/media/examples/X3D/SecretLabyrinth/screenshot-small.png" alt="SecretLabyrinth"/></a>
|
|
127
89
|
</td>
|
|
128
90
|
<td>
|
|
129
|
-
<a href="https://create3000.github.io/media/examples/X3D/SlidingPuzzle/SlidingPuzzle.x3d" title="X3D » SlidingPuzzle">
|
|
130
|
-
<img src="https://create3000.github.io/media/examples/X3D/SlidingPuzzle/screenshot-small.png" alt="SlidingPuzzle"/>
|
|
131
|
-
</a>
|
|
91
|
+
<a href="https://create3000.github.io/media/examples/X3D/SlidingPuzzle/SlidingPuzzle.x3d" title="X3D » SlidingPuzzle"><img src="https://create3000.github.io/media/examples/X3D/SlidingPuzzle/screenshot-small.png" alt="SlidingPuzzle"/></a>
|
|
132
92
|
</td>
|
|
133
93
|
<td>
|
|
134
|
-
<a href="https://create3000.github.io/media/examples/X3D/SmartyBubbles/SmartyBubbles.x3d" title="X3D » SmartyBubbles">
|
|
135
|
-
<img src="https://create3000.github.io/media/examples/X3D/SmartyBubbles/screenshot-small.png" alt="SmartyBubbles"/>
|
|
136
|
-
</a>
|
|
94
|
+
<a href="https://create3000.github.io/media/examples/X3D/SmartyBubbles/SmartyBubbles.x3d" title="X3D » SmartyBubbles"><img src="https://create3000.github.io/media/examples/X3D/SmartyBubbles/screenshot-small.png" alt="SmartyBubbles"/></a>
|
|
137
95
|
</td>
|
|
138
96
|
</tr>
|
|
139
97
|
<tr>
|
|
140
98
|
<td>
|
|
141
|
-
<a href="https://create3000.github.io/media/examples/X3D/SmashingBoxes/SmashingBoxes.x3d" title="X3D » SmashingBoxes">
|
|
142
|
-
<img src="https://create3000.github.io/media/examples/X3D/SmashingBoxes/screenshot-small.png" alt="SmashingBoxes"/>
|
|
143
|
-
</a>
|
|
99
|
+
<a href="https://create3000.github.io/media/examples/X3D/SmashingBoxes/SmashingBoxes.x3d" title="X3D » SmashingBoxes"><img src="https://create3000.github.io/media/examples/X3D/SmashingBoxes/screenshot-small.png" alt="SmashingBoxes"/></a>
|
|
144
100
|
</td>
|
|
145
101
|
<td>
|
|
146
|
-
<a href="https://create3000.github.io/media/examples/X3D/SugarSmack/SugarSmack.x3d" title="X3D » SugarSmack">
|
|
147
|
-
<img src="https://create3000.github.io/media/examples/X3D/SugarSmack/screenshot-small.png" alt="SugarSmack"/>
|
|
148
|
-
</a>
|
|
102
|
+
<a href="https://create3000.github.io/media/examples/X3D/SugarSmack/SugarSmack.x3d" title="X3D » SugarSmack"><img src="https://create3000.github.io/media/examples/X3D/SugarSmack/screenshot-small.png" alt="SugarSmack"/></a>
|
|
149
103
|
</td>
|
|
150
104
|
<td>
|
|
151
|
-
<a href="https://create3000.github.io/media/examples/X3D/TikiWorld/TikiWorld.x3d" title="X3D » TikiWorld">
|
|
152
|
-
<img src="https://create3000.github.io/media/examples/X3D/TikiWorld/screenshot-small.png" alt="TikiWorld"/>
|
|
153
|
-
</a>
|
|
105
|
+
<a href="https://create3000.github.io/media/examples/X3D/TikiWorld/TikiWorld.x3d" title="X3D » TikiWorld"><img src="https://create3000.github.io/media/examples/X3D/TikiWorld/screenshot-small.png" alt="TikiWorld"/></a>
|
|
154
106
|
</td>
|
|
155
107
|
<td>
|
|
156
|
-
<a href="https://create3000.github.io/media/examples/X3D/TreasureIsland/TreasureIsland.x3d" title="X3D » TreasureIsland">
|
|
157
|
-
<img src="https://create3000.github.io/media/examples/X3D/TreasureIsland/screenshot-small.png" alt="TreasureIsland"/>
|
|
158
|
-
</a>
|
|
108
|
+
<a href="https://create3000.github.io/media/examples/X3D/TreasureIsland/TreasureIsland.x3d" title="X3D » TreasureIsland"><img src="https://create3000.github.io/media/examples/X3D/TreasureIsland/screenshot-small.png" alt="TreasureIsland"/></a>
|
|
159
109
|
</td>
|
|
160
110
|
<td>
|
|
161
|
-
<a href="https://create3000.github.io/media/examples/X3D/Vattenfall/Vattenfall.x3d" title="X3D » Vattenfall">
|
|
162
|
-
<img src="https://create3000.github.io/media/examples/X3D/Vattenfall/screenshot-small.png" alt="Vattenfall"/>
|
|
163
|
-
</a>
|
|
111
|
+
<a href="https://create3000.github.io/media/examples/X3D/Vattenfall/Vattenfall.x3d" title="X3D » Vattenfall"><img src="https://create3000.github.io/media/examples/X3D/Vattenfall/screenshot-small.png" alt="Vattenfall"/></a>
|
|
164
112
|
</td>
|
|
165
113
|
<td>
|
|
166
|
-
<a href="https://create3000.github.io/media/examples/X3D/WaterQuality/WaterQuality.x3d" title="X3D » WaterQuality">
|
|
167
|
-
<img src="https://create3000.github.io/media/examples/X3D/WaterQuality/screenshot-small.png" alt="WaterQuality"/>
|
|
168
|
-
</a>
|
|
114
|
+
<a href="https://create3000.github.io/media/examples/X3D/WaterQuality/WaterQuality.x3d" title="X3D » WaterQuality"><img src="https://create3000.github.io/media/examples/X3D/WaterQuality/screenshot-small.png" alt="WaterQuality"/></a>
|
|
169
115
|
</td>
|
|
170
116
|
<td>
|
|
171
|
-
<a href="https://create3000.github.io/media/examples/CADGeometry/QuadSet/QuadSet.x3d" title="CADGeometry » QuadSet">
|
|
172
|
-
<img src="https://create3000.github.io/media/examples/CADGeometry/QuadSet/screenshot-small.png" alt="QuadSet"/>
|
|
173
|
-
</a>
|
|
117
|
+
<a href="https://create3000.github.io/media/examples/CADGeometry/QuadSet/QuadSet.x3d" title="CADGeometry » QuadSet"><img src="https://create3000.github.io/media/examples/CADGeometry/QuadSet/screenshot-small.png" alt="QuadSet"/></a>
|
|
174
118
|
</td>
|
|
175
119
|
</tr>
|
|
176
120
|
<tr>
|
|
177
121
|
<td>
|
|
178
|
-
<a href="https://create3000.github.io/media/examples/CubeMapTexturing/ComposedCubeMapTexture/ComposedCubeMapTexture.x3d" title="CubeMapTexturing » ComposedCubeMapTexture">
|
|
179
|
-
<img src="https://create3000.github.io/media/examples/CubeMapTexturing/ComposedCubeMapTexture/screenshot-small.png" alt="ComposedCubeMapTexture"/>
|
|
180
|
-
</a>
|
|
122
|
+
<a href="https://create3000.github.io/media/examples/CubeMapTexturing/ComposedCubeMapTexture/ComposedCubeMapTexture.x3d" title="CubeMapTexturing » ComposedCubeMapTexture"><img src="https://create3000.github.io/media/examples/CubeMapTexturing/ComposedCubeMapTexture/screenshot-small.png" alt="ComposedCubeMapTexture"/></a>
|
|
181
123
|
</td>
|
|
182
124
|
<td>
|
|
183
|
-
<a href="https://create3000.github.io/media/examples/CubeMapTexturing/GeneratedCubeMapTexture/GeneratedCubeMapTexture.x3d" title="CubeMapTexturing » GeneratedCubeMapTexture">
|
|
184
|
-
<img src="https://create3000.github.io/media/examples/CubeMapTexturing/GeneratedCubeMapTexture/screenshot-small.png" alt="GeneratedCubeMapTexture"/>
|
|
185
|
-
</a>
|
|
125
|
+
<a href="https://create3000.github.io/media/examples/CubeMapTexturing/GeneratedCubeMapTexture/GeneratedCubeMapTexture.x3d" title="CubeMapTexturing » GeneratedCubeMapTexture"><img src="https://create3000.github.io/media/examples/CubeMapTexturing/GeneratedCubeMapTexture/screenshot-small.png" alt="GeneratedCubeMapTexture"/></a>
|
|
186
126
|
</td>
|
|
187
127
|
<td>
|
|
188
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/Background/Background.x3d" title="EnvironmentalEffects » Background">
|
|
189
|
-
<img src="https://create3000.github.io/media/examples/EnvironmentalEffects/Background/screenshot-small.png" alt="Background"/>
|
|
190
|
-
</a>
|
|
128
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/Background/Background.x3d" title="EnvironmentalEffects » Background"><img src="https://create3000.github.io/media/examples/EnvironmentalEffects/Background/screenshot-small.png" alt="Background"/></a>
|
|
191
129
|
</td>
|
|
192
130
|
<td>
|
|
193
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/Fog/Fog.x3d" title="EnvironmentalEffects » Fog">
|
|
194
|
-
<img src="https://create3000.github.io/media/examples/EnvironmentalEffects/Fog/screenshot-small.png" alt="Fog"/>
|
|
195
|
-
</a>
|
|
131
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/Fog/Fog.x3d" title="EnvironmentalEffects » Fog"><img src="https://create3000.github.io/media/examples/EnvironmentalEffects/Fog/screenshot-small.png" alt="Fog"/></a>
|
|
196
132
|
</td>
|
|
197
133
|
<td>
|
|
198
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/LocalFog/LocalFog.x3d" title="EnvironmentalEffects » LocalFog">
|
|
199
|
-
<img src="https://create3000.github.io/media/examples/EnvironmentalEffects/LocalFog/screenshot-small.png" alt="LocalFog"/>
|
|
200
|
-
</a>
|
|
134
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/LocalFog/LocalFog.x3d" title="EnvironmentalEffects » LocalFog"><img src="https://create3000.github.io/media/examples/EnvironmentalEffects/LocalFog/screenshot-small.png" alt="LocalFog"/></a>
|
|
201
135
|
</td>
|
|
202
136
|
<td>
|
|
203
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/TextureBackground/TextureBackground.x3d" title="EnvironmentalEffects » TextureBackground">
|
|
204
|
-
<img src="https://create3000.github.io/media/examples/EnvironmentalEffects/TextureBackground/screenshot-small.png" alt="TextureBackground"/>
|
|
205
|
-
</a>
|
|
137
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalEffects/TextureBackground/TextureBackground.x3d" title="EnvironmentalEffects » TextureBackground"><img src="https://create3000.github.io/media/examples/EnvironmentalEffects/TextureBackground/screenshot-small.png" alt="TextureBackground"/></a>
|
|
206
138
|
</td>
|
|
207
139
|
<td>
|
|
208
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalSensor/ProximitySensor/ProximitySensor.x3d" title="EnvironmentalSensor » ProximitySensor">
|
|
209
|
-
<img src="https://create3000.github.io/media/examples/EnvironmentalSensor/ProximitySensor/screenshot-small.png" alt="ProximitySensor"/>
|
|
210
|
-
</a>
|
|
140
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalSensor/ProximitySensor/ProximitySensor.x3d" title="EnvironmentalSensor » ProximitySensor"><img src="https://create3000.github.io/media/examples/EnvironmentalSensor/ProximitySensor/screenshot-small.png" alt="ProximitySensor"/></a>
|
|
211
141
|
</td>
|
|
212
142
|
</tr>
|
|
213
143
|
<tr>
|
|
214
144
|
<td>
|
|
215
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalSensor/TransformSensor/TransformSensor.x3d" title="EnvironmentalSensor » TransformSensor">
|
|
216
|
-
<img src="https://create3000.github.io/media/examples/EnvironmentalSensor/TransformSensor/screenshot-small.png" alt="TransformSensor"/>
|
|
217
|
-
</a>
|
|
145
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalSensor/TransformSensor/TransformSensor.x3d" title="EnvironmentalSensor » TransformSensor"><img src="https://create3000.github.io/media/examples/EnvironmentalSensor/TransformSensor/screenshot-small.png" alt="TransformSensor"/></a>
|
|
218
146
|
</td>
|
|
219
147
|
<td>
|
|
220
|
-
<a href="https://create3000.github.io/media/examples/EnvironmentalSensor/VisibilitySensor/VisibilitySensor.x3d" title="EnvironmentalSensor » VisibilitySensor">
|
|
221
|
-
<img src="https://create3000.github.io/media/examples/EnvironmentalSensor/VisibilitySensor/screenshot-small.png" alt="VisibilitySensor"/>
|
|
222
|
-
</a>
|
|
148
|
+
<a href="https://create3000.github.io/media/examples/EnvironmentalSensor/VisibilitySensor/VisibilitySensor.x3d" title="EnvironmentalSensor » VisibilitySensor"><img src="https://create3000.github.io/media/examples/EnvironmentalSensor/VisibilitySensor/screenshot-small.png" alt="VisibilitySensor"/></a>
|
|
223
149
|
</td>
|
|
224
150
|
<td>
|
|
225
|
-
<a href="https://create3000.github.io/media/examples/EventUtilities/IntegerSequencer/IntegerSequencer.x3d" title="EventUtilities » IntegerSequencer">
|
|
226
|
-
<img src="https://create3000.github.io/media/examples/EventUtilities/IntegerSequencer/screenshot-small.png" alt="IntegerSequencer"/>
|
|
227
|
-
</a>
|
|
151
|
+
<a href="https://create3000.github.io/media/examples/EventUtilities/IntegerSequencer/IntegerSequencer.x3d" title="EventUtilities » IntegerSequencer"><img src="https://create3000.github.io/media/examples/EventUtilities/IntegerSequencer/screenshot-small.png" alt="IntegerSequencer"/></a>
|
|
228
152
|
</td>
|
|
229
153
|
<td>
|
|
230
|
-
<a href="https://create3000.github.io/media/examples/Followers/ColorChaser/ColorChaser.x3d" title="Followers » ColorChaser">
|
|
231
|
-
<img src="https://create3000.github.io/media/examples/Followers/ColorChaser/screenshot-small.png" alt="ColorChaser"/>
|
|
232
|
-
</a>
|
|
154
|
+
<a href="https://create3000.github.io/media/examples/Followers/ColorChaser/ColorChaser.x3d" title="Followers » ColorChaser"><img src="https://create3000.github.io/media/examples/Followers/ColorChaser/screenshot-small.png" alt="ColorChaser"/></a>
|
|
233
155
|
</td>
|
|
234
156
|
<td>
|
|
235
|
-
<a href="https://create3000.github.io/media/examples/Followers/ColorDamper/ColorDamper.x3d" title="Followers » ColorDamper">
|
|
236
|
-
<img src="https://create3000.github.io/media/examples/Followers/ColorDamper/screenshot-small.png" alt="ColorDamper"/>
|
|
237
|
-
</a>
|
|
157
|
+
<a href="https://create3000.github.io/media/examples/Followers/ColorDamper/ColorDamper.x3d" title="Followers » ColorDamper"><img src="https://create3000.github.io/media/examples/Followers/ColorDamper/screenshot-small.png" alt="ColorDamper"/></a>
|
|
238
158
|
</td>
|
|
239
159
|
<td>
|
|
240
|
-
<a href="https://create3000.github.io/media/examples/Followers/CoordinateChaser/CoordinateChaser.x3d" title="Followers » CoordinateChaser">
|
|
241
|
-
<img src="https://create3000.github.io/media/examples/Followers/CoordinateChaser/screenshot-small.png" alt="CoordinateChaser"/>
|
|
242
|
-
</a>
|
|
160
|
+
<a href="https://create3000.github.io/media/examples/Followers/CoordinateChaser/CoordinateChaser.x3d" title="Followers » CoordinateChaser"><img src="https://create3000.github.io/media/examples/Followers/CoordinateChaser/screenshot-small.png" alt="CoordinateChaser"/></a>
|
|
243
161
|
</td>
|
|
244
162
|
<td>
|
|
245
|
-
<a href="https://create3000.github.io/media/examples/Followers/ScalarChaser/ScalarChaser.x3d" title="Followers » ScalarChaser">
|
|
246
|
-
<img src="https://create3000.github.io/media/examples/Followers/ScalarChaser/screenshot-small.png" alt="ScalarChaser"/>
|
|
247
|
-
</a>
|
|
163
|
+
<a href="https://create3000.github.io/media/examples/Followers/ScalarChaser/ScalarChaser.x3d" title="Followers » ScalarChaser"><img src="https://create3000.github.io/media/examples/Followers/ScalarChaser/screenshot-small.png" alt="ScalarChaser"/></a>
|
|
248
164
|
</td>
|
|
249
165
|
</tr>
|
|
250
166
|
<tr>
|
|
251
167
|
<td>
|
|
252
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/Arc2D/Arc2D.x3d" title="Geometry2D » Arc2D">
|
|
253
|
-
<img src="https://create3000.github.io/media/examples/Geometry2D/Arc2D/screenshot-small.png" alt="Arc2D"/>
|
|
254
|
-
</a>
|
|
168
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/Arc2D/Arc2D.x3d" title="Geometry2D » Arc2D"><img src="https://create3000.github.io/media/examples/Geometry2D/Arc2D/screenshot-small.png" alt="Arc2D"/></a>
|
|
255
169
|
</td>
|
|
256
170
|
<td>
|
|
257
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/ArcClose2D/ArcClose2D.x3d" title="Geometry2D » ArcClose2D">
|
|
258
|
-
<img src="https://create3000.github.io/media/examples/Geometry2D/ArcClose2D/screenshot-small.png" alt="ArcClose2D"/>
|
|
259
|
-
</a>
|
|
171
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/ArcClose2D/ArcClose2D.x3d" title="Geometry2D » ArcClose2D"><img src="https://create3000.github.io/media/examples/Geometry2D/ArcClose2D/screenshot-small.png" alt="ArcClose2D"/></a>
|
|
260
172
|
</td>
|
|
261
173
|
<td>
|
|
262
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/Circle2D/Circle2D.x3d" title="Geometry2D » Circle2D">
|
|
263
|
-
<img src="https://create3000.github.io/media/examples/Geometry2D/Circle2D/screenshot-small.png" alt="Circle2D"/>
|
|
264
|
-
</a>
|
|
174
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/Circle2D/Circle2D.x3d" title="Geometry2D » Circle2D"><img src="https://create3000.github.io/media/examples/Geometry2D/Circle2D/screenshot-small.png" alt="Circle2D"/></a>
|
|
265
175
|
</td>
|
|
266
176
|
<td>
|
|
267
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/Disk2D/Disk2D.x3d" title="Geometry2D » Disk2D">
|
|
268
|
-
<img src="https://create3000.github.io/media/examples/Geometry2D/Disk2D/screenshot-small.png" alt="Disk2D"/>
|
|
269
|
-
</a>
|
|
177
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/Disk2D/Disk2D.x3d" title="Geometry2D » Disk2D"><img src="https://create3000.github.io/media/examples/Geometry2D/Disk2D/screenshot-small.png" alt="Disk2D"/></a>
|
|
270
178
|
</td>
|
|
271
179
|
<td>
|
|
272
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/Polyline2D/Polyline2D.x3d" title="Geometry2D » Polyline2D">
|
|
273
|
-
<img src="https://create3000.github.io/media/examples/Geometry2D/Polyline2D/screenshot-small.png" alt="Polyline2D"/>
|
|
274
|
-
</a>
|
|
180
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/Polyline2D/Polyline2D.x3d" title="Geometry2D » Polyline2D"><img src="https://create3000.github.io/media/examples/Geometry2D/Polyline2D/screenshot-small.png" alt="Polyline2D"/></a>
|
|
275
181
|
</td>
|
|
276
182
|
<td>
|
|
277
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/Polypoint2D/Polypoint2D.x3d" title="Geometry2D » Polypoint2D">
|
|
278
|
-
<img src="https://create3000.github.io/media/examples/Geometry2D/Polypoint2D/screenshot-small.png" alt="Polypoint2D"/>
|
|
279
|
-
</a>
|
|
183
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/Polypoint2D/Polypoint2D.x3d" title="Geometry2D » Polypoint2D"><img src="https://create3000.github.io/media/examples/Geometry2D/Polypoint2D/screenshot-small.png" alt="Polypoint2D"/></a>
|
|
280
184
|
</td>
|
|
281
185
|
<td>
|
|
282
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/Rectangle2D/Rectangle2D.x3d" title="Geometry2D » Rectangle2D">
|
|
283
|
-
<img src="https://create3000.github.io/media/examples/Geometry2D/Rectangle2D/screenshot-small.png" alt="Rectangle2D"/>
|
|
284
|
-
</a>
|
|
186
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/Rectangle2D/Rectangle2D.x3d" title="Geometry2D » Rectangle2D"><img src="https://create3000.github.io/media/examples/Geometry2D/Rectangle2D/screenshot-small.png" alt="Rectangle2D"/></a>
|
|
285
187
|
</td>
|
|
286
188
|
</tr>
|
|
287
189
|
<tr>
|
|
288
190
|
<td>
|
|
289
|
-
<a href="https://create3000.github.io/media/examples/Geometry2D/TriangleSet2D/TriangleSet2D.x3d" title="Geometry2D » TriangleSet2D">
|
|
290
|
-
<img src="https://create3000.github.io/media/examples/Geometry2D/TriangleSet2D/screenshot-small.png" alt="TriangleSet2D"/>
|
|
291
|
-
</a>
|
|
191
|
+
<a href="https://create3000.github.io/media/examples/Geometry2D/TriangleSet2D/TriangleSet2D.x3d" title="Geometry2D » TriangleSet2D"><img src="https://create3000.github.io/media/examples/Geometry2D/TriangleSet2D/screenshot-small.png" alt="TriangleSet2D"/></a>
|
|
292
192
|
</td>
|
|
293
193
|
<td>
|
|
294
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/Box/Box.x3d" title="Geometry3D » Box">
|
|
295
|
-
<img src="https://create3000.github.io/media/examples/Geometry3D/Box/screenshot-small.png" alt="Box"/>
|
|
296
|
-
</a>
|
|
194
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/Box/Box.x3d" title="Geometry3D » Box"><img src="https://create3000.github.io/media/examples/Geometry3D/Box/screenshot-small.png" alt="Box"/></a>
|
|
297
195
|
</td>
|
|
298
196
|
<td>
|
|
299
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/Cone/Cone.x3d" title="Geometry3D » Cone">
|
|
300
|
-
<img src="https://create3000.github.io/media/examples/Geometry3D/Cone/screenshot-small.png" alt="Cone"/>
|
|
301
|
-
</a>
|
|
197
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/Cone/Cone.x3d" title="Geometry3D » Cone"><img src="https://create3000.github.io/media/examples/Geometry3D/Cone/screenshot-small.png" alt="Cone"/></a>
|
|
302
198
|
</td>
|
|
303
199
|
<td>
|
|
304
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/Cylinder/Cylinder.x3d" title="Geometry3D » Cylinder">
|
|
305
|
-
<img src="https://create3000.github.io/media/examples/Geometry3D/Cylinder/screenshot-small.png" alt="Cylinder"/>
|
|
306
|
-
</a>
|
|
200
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/Cylinder/Cylinder.x3d" title="Geometry3D » Cylinder"><img src="https://create3000.github.io/media/examples/Geometry3D/Cylinder/screenshot-small.png" alt="Cylinder"/></a>
|
|
307
201
|
</td>
|
|
308
202
|
<td>
|
|
309
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/ElevationGrid/ElevationGrid.x3d" title="Geometry3D » ElevationGrid">
|
|
310
|
-
<img src="https://create3000.github.io/media/examples/Geometry3D/ElevationGrid/screenshot-small.png" alt="ElevationGrid"/>
|
|
311
|
-
</a>
|
|
203
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/ElevationGrid/ElevationGrid.x3d" title="Geometry3D » ElevationGrid"><img src="https://create3000.github.io/media/examples/Geometry3D/ElevationGrid/screenshot-small.png" alt="ElevationGrid"/></a>
|
|
312
204
|
</td>
|
|
313
205
|
<td>
|
|
314
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/Extrusion/Extrusion.x3d" title="Geometry3D » Extrusion">
|
|
315
|
-
<img src="https://create3000.github.io/media/examples/Geometry3D/Extrusion/screenshot-small.png" alt="Extrusion"/>
|
|
316
|
-
</a>
|
|
206
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/Extrusion/Extrusion.x3d" title="Geometry3D » Extrusion"><img src="https://create3000.github.io/media/examples/Geometry3D/Extrusion/screenshot-small.png" alt="Extrusion"/></a>
|
|
317
207
|
</td>
|
|
318
208
|
<td>
|
|
319
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/IndexedFaceSet/IndexedFaceSet.x3d" title="Geometry3D » IndexedFaceSet">
|
|
320
|
-
<img src="https://create3000.github.io/media/examples/Geometry3D/IndexedFaceSet/screenshot-small.png" alt="IndexedFaceSet"/>
|
|
321
|
-
</a>
|
|
209
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/IndexedFaceSet/IndexedFaceSet.x3d" title="Geometry3D » IndexedFaceSet"><img src="https://create3000.github.io/media/examples/Geometry3D/IndexedFaceSet/screenshot-small.png" alt="IndexedFaceSet"/></a>
|
|
322
210
|
</td>
|
|
323
211
|
</tr>
|
|
324
212
|
<tr>
|
|
325
213
|
<td>
|
|
326
|
-
<a href="https://create3000.github.io/media/examples/Geometry3D/Sphere/Sphere.x3d" title="Geometry3D » Sphere">
|
|
327
|
-
<img src="https://create3000.github.io/media/examples/Geometry3D/Sphere/screenshot-small.png" alt="Sphere"/>
|
|
328
|
-
</a>
|
|
214
|
+
<a href="https://create3000.github.io/media/examples/Geometry3D/Sphere/Sphere.x3d" title="Geometry3D » Sphere"><img src="https://create3000.github.io/media/examples/Geometry3D/Sphere/screenshot-small.png" alt="Sphere"/></a>
|
|
329
215
|
</td>
|
|
330
216
|
<td>
|
|
331
|
-
<a href="https://create3000.github.io/media/examples/Geospatial/GeoElevationGrid/GeoElevationGrid.x3d" title="Geospatial » GeoElevationGrid">
|
|
332
|
-
<img src="https://create3000.github.io/media/examples/Geospatial/GeoElevationGrid/screenshot-small.png" alt="GeoElevationGrid"/>
|
|
333
|
-
</a>
|
|
217
|
+
<a href="https://create3000.github.io/media/examples/Geospatial/GeoElevationGrid/GeoElevationGrid.x3d" title="Geospatial » GeoElevationGrid"><img src="https://create3000.github.io/media/examples/Geospatial/GeoElevationGrid/screenshot-small.png" alt="GeoElevationGrid"/></a>
|
|
334
218
|
</td>
|
|
335
219
|
<td>
|
|
336
|
-
<a href="https://create3000.github.io/media/examples/Geospatial/GeoLOD/GeoLOD.x3d" title="Geospatial » GeoLOD">
|
|
337
|
-
<img src="https://create3000.github.io/media/examples/Geospatial/GeoLOD/screenshot-small.png" alt="GeoLOD"/>
|
|
338
|
-
</a>
|
|
220
|
+
<a href="https://create3000.github.io/media/examples/Geospatial/GeoLOD/GeoLOD.x3d" title="Geospatial » GeoLOD"><img src="https://create3000.github.io/media/examples/Geospatial/GeoLOD/screenshot-small.png" alt="GeoLOD"/></a>
|
|
339
221
|
</td>
|
|
340
222
|
<td>
|
|
341
|
-
<a href="https://create3000.github.io/media/examples/Geospatial/GeoViewpoint/GeoViewpoint.x3d" title="Geospatial » GeoViewpoint">
|
|
342
|
-
<img src="https://create3000.github.io/media/examples/Geospatial/GeoViewpoint/screenshot-small.png" alt="GeoViewpoint"/>
|
|
343
|
-
</a>
|
|
223
|
+
<a href="https://create3000.github.io/media/examples/Geospatial/GeoViewpoint/GeoViewpoint.x3d" title="Geospatial » GeoViewpoint"><img src="https://create3000.github.io/media/examples/Geospatial/GeoViewpoint/screenshot-small.png" alt="GeoViewpoint"/></a>
|
|
344
224
|
</td>
|
|
345
225
|
<td>
|
|
346
|
-
<a href="https://create3000.github.io/media/examples/Grouping/Group/Group.x3d" title="Grouping » Group">
|
|
347
|
-
<img src="https://create3000.github.io/media/examples/Grouping/Group/screenshot-small.png" alt="Group"/>
|
|
348
|
-
</a>
|
|
226
|
+
<a href="https://create3000.github.io/media/examples/Grouping/Group/Group.x3d" title="Grouping » Group"><img src="https://create3000.github.io/media/examples/Grouping/Group/screenshot-small.png" alt="Group"/></a>
|
|
349
227
|
</td>
|
|
350
228
|
<td>
|
|
351
|
-
<a href="https://create3000.github.io/media/examples/Grouping/Switch/Switch.x3d" title="Grouping » Switch">
|
|
352
|
-
<img src="https://create3000.github.io/media/examples/Grouping/Switch/screenshot-small.png" alt="Switch"/>
|
|
353
|
-
</a>
|
|
229
|
+
<a href="https://create3000.github.io/media/examples/Grouping/Switch/Switch.x3d" title="Grouping » Switch"><img src="https://create3000.github.io/media/examples/Grouping/Switch/screenshot-small.png" alt="Switch"/></a>
|
|
354
230
|
</td>
|
|
355
231
|
<td>
|
|
356
|
-
<a href="https://create3000.github.io/media/examples/Grouping/Transform/Transform.x3d" title="Grouping » Transform">
|
|
357
|
-
<img src="https://create3000.github.io/media/examples/Grouping/Transform/screenshot-small.png" alt="Transform"/>
|
|
358
|
-
</a>
|
|
232
|
+
<a href="https://create3000.github.io/media/examples/Grouping/Transform/Transform.x3d" title="Grouping » Transform"><img src="https://create3000.github.io/media/examples/Grouping/Transform/screenshot-small.png" alt="Transform"/></a>
|
|
359
233
|
</td>
|
|
360
234
|
</tr>
|
|
361
235
|
<tr>
|
|
362
236
|
<td>
|
|
363
|
-
<a href="https://create3000.github.io/media/examples/HAnim/HAnimHumanoid/HAnimHumanoid.x3d" title="HAnim » HAnimHumanoid">
|
|
364
|
-
<img src="https://create3000.github.io/media/examples/HAnim/HAnimHumanoid/screenshot-small.png" alt="HAnimHumanoid"/>
|
|
365
|
-
</a>
|
|
237
|
+
<a href="https://create3000.github.io/media/examples/HAnim/HAnimHumanoid/HAnimHumanoid.x3d" title="HAnim » HAnimHumanoid"><img src="https://create3000.github.io/media/examples/HAnim/HAnimHumanoid/screenshot-small.png" alt="HAnimHumanoid"/></a>
|
|
366
238
|
</td>
|
|
367
239
|
<td>
|
|
368
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/ColorInterpolator/ColorInterpolator.x3d" title="Interpolation » ColorInterpolator">
|
|
369
|
-
<img src="https://create3000.github.io/media/examples/Interpolation/ColorInterpolator/screenshot-small.png" alt="ColorInterpolator"/>
|
|
370
|
-
</a>
|
|
240
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/ColorInterpolator/ColorInterpolator.x3d" title="Interpolation » ColorInterpolator"><img src="https://create3000.github.io/media/examples/Interpolation/ColorInterpolator/screenshot-small.png" alt="ColorInterpolator"/></a>
|
|
371
241
|
</td>
|
|
372
242
|
<td>
|
|
373
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/CoordinateInterpolator/CoordinateInterpolator.x3d" title="Interpolation » CoordinateInterpolator">
|
|
374
|
-
<img src="https://create3000.github.io/media/examples/Interpolation/CoordinateInterpolator/screenshot-small.png" alt="CoordinateInterpolator"/>
|
|
375
|
-
</a>
|
|
243
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/CoordinateInterpolator/CoordinateInterpolator.x3d" title="Interpolation » CoordinateInterpolator"><img src="https://create3000.github.io/media/examples/Interpolation/CoordinateInterpolator/screenshot-small.png" alt="CoordinateInterpolator"/></a>
|
|
376
244
|
</td>
|
|
377
245
|
<td>
|
|
378
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/OrientationInterpolator/OrientationInterpolator.x3d" title="Interpolation » OrientationInterpolator">
|
|
379
|
-
<img src="https://create3000.github.io/media/examples/Interpolation/OrientationInterpolator/screenshot-small.png" alt="OrientationInterpolator"/>
|
|
380
|
-
</a>
|
|
246
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/OrientationInterpolator/OrientationInterpolator.x3d" title="Interpolation » OrientationInterpolator"><img src="https://create3000.github.io/media/examples/Interpolation/OrientationInterpolator/screenshot-small.png" alt="OrientationInterpolator"/></a>
|
|
381
247
|
</td>
|
|
382
248
|
<td>
|
|
383
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator/PositionInterpolator.x3d" title="Interpolation » PositionInterpolator">
|
|
384
|
-
<img src="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator/screenshot-small.png" alt="PositionInterpolator"/>
|
|
385
|
-
</a>
|
|
249
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator/PositionInterpolator.x3d" title="Interpolation » PositionInterpolator"><img src="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator/screenshot-small.png" alt="PositionInterpolator"/></a>
|
|
386
250
|
</td>
|
|
387
251
|
<td>
|
|
388
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator2D/PositionInterpolator2D.x3d" title="Interpolation » PositionInterpolator2D">
|
|
389
|
-
<img src="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator2D/screenshot-small.png" alt="PositionInterpolator2D"/>
|
|
390
|
-
</a>
|
|
252
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator2D/PositionInterpolator2D.x3d" title="Interpolation » PositionInterpolator2D"><img src="https://create3000.github.io/media/examples/Interpolation/PositionInterpolator2D/screenshot-small.png" alt="PositionInterpolator2D"/></a>
|
|
391
253
|
</td>
|
|
392
254
|
<td>
|
|
393
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/ScalarInterpolator/ScalarInterpolator.x3d" title="Interpolation » ScalarInterpolator">
|
|
394
|
-
<img src="https://create3000.github.io/media/examples/Interpolation/ScalarInterpolator/screenshot-small.png" alt="ScalarInterpolator"/>
|
|
395
|
-
</a>
|
|
255
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/ScalarInterpolator/ScalarInterpolator.x3d" title="Interpolation » ScalarInterpolator"><img src="https://create3000.github.io/media/examples/Interpolation/ScalarInterpolator/screenshot-small.png" alt="ScalarInterpolator"/></a>
|
|
396
256
|
</td>
|
|
397
257
|
</tr>
|
|
398
258
|
<tr>
|
|
399
259
|
<td>
|
|
400
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/SplineScalarInterpolator/SplineScalarInterpolator.x3d" title="Interpolation » SplineScalarInterpolator">
|
|
401
|
-
<img src="https://create3000.github.io/media/examples/Interpolation/SplineScalarInterpolator/screenshot-small.png" alt="SplineScalarInterpolator"/>
|
|
402
|
-
</a>
|
|
260
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/SplineScalarInterpolator/SplineScalarInterpolator.x3d" title="Interpolation » SplineScalarInterpolator"><img src="https://create3000.github.io/media/examples/Interpolation/SplineScalarInterpolator/screenshot-small.png" alt="SplineScalarInterpolator"/></a>
|
|
403
261
|
</td>
|
|
404
262
|
<td>
|
|
405
|
-
<a href="https://create3000.github.io/media/examples/Interpolation/SquadOrientationInterpolator/SquadOrientationInterpolator.x3d" title="Interpolation » SquadOrientationInterpolator">
|
|
406
|
-
<img src="https://create3000.github.io/media/examples/Interpolation/SquadOrientationInterpolator/screenshot-small.png" alt="SquadOrientationInterpolator"/>
|
|
407
|
-
</a>
|
|
263
|
+
<a href="https://create3000.github.io/media/examples/Interpolation/SquadOrientationInterpolator/SquadOrientationInterpolator.x3d" title="Interpolation » SquadOrientationInterpolator"><img src="https://create3000.github.io/media/examples/Interpolation/SquadOrientationInterpolator/screenshot-small.png" alt="SquadOrientationInterpolator"/></a>
|
|
408
264
|
</td>
|
|
409
265
|
<td>
|
|
410
|
-
<a href="https://create3000.github.io/media/examples/KeyDeviceSensor/KeySensor/KeySensor.x3d" title="KeyDeviceSensor » KeySensor">
|
|
411
|
-
<img src="https://create3000.github.io/media/examples/KeyDeviceSensor/KeySensor/screenshot-small.png" alt="KeySensor"/>
|
|
412
|
-
</a>
|
|
266
|
+
<a href="https://create3000.github.io/media/examples/KeyDeviceSensor/KeySensor/KeySensor.x3d" title="KeyDeviceSensor » KeySensor"><img src="https://create3000.github.io/media/examples/KeyDeviceSensor/KeySensor/screenshot-small.png" alt="KeySensor"/></a>
|
|
413
267
|
</td>
|
|
414
268
|
<td>
|
|
415
|
-
<a href="https://create3000.github.io/media/examples/KeyDeviceSensor/StringSensor/StringSensor.x3d" title="KeyDeviceSensor » StringSensor">
|
|
416
|
-
<img src="https://create3000.github.io/media/examples/KeyDeviceSensor/StringSensor/screenshot-small.png" alt="StringSensor"/>
|
|
417
|
-
</a>
|
|
269
|
+
<a href="https://create3000.github.io/media/examples/KeyDeviceSensor/StringSensor/StringSensor.x3d" title="KeyDeviceSensor » StringSensor"><img src="https://create3000.github.io/media/examples/KeyDeviceSensor/StringSensor/screenshot-small.png" alt="StringSensor"/></a>
|
|
418
270
|
</td>
|
|
419
271
|
<td>
|
|
420
|
-
<a href="https://create3000.github.io/media/examples/Layering/LayerSet/LayerSet.x3d" title="Layering » LayerSet">
|
|
421
|
-
<img src="https://create3000.github.io/media/examples/Layering/LayerSet/screenshot-small.png" alt="LayerSet"/>
|
|
422
|
-
</a>
|
|
272
|
+
<a href="https://create3000.github.io/media/examples/Layering/LayerSet/LayerSet.x3d" title="Layering » LayerSet"><img src="https://create3000.github.io/media/examples/Layering/LayerSet/screenshot-small.png" alt="LayerSet"/></a>
|
|
423
273
|
</td>
|
|
424
274
|
<td>
|
|
425
|
-
<a href="https://create3000.github.io/media/examples/Layering/Viewport/Viewport.x3d" title="Layering » Viewport">
|
|
426
|
-
<img src="https://create3000.github.io/media/examples/Layering/Viewport/screenshot-small.png" alt="Viewport"/>
|
|
427
|
-
</a>
|
|
275
|
+
<a href="https://create3000.github.io/media/examples/Layering/Viewport/Viewport.x3d" title="Layering » Viewport"><img src="https://create3000.github.io/media/examples/Layering/Viewport/screenshot-small.png" alt="Viewport"/></a>
|
|
428
276
|
</td>
|
|
429
277
|
<td>
|
|
430
|
-
<a href="https://create3000.github.io/media/examples/Lighting/DirectionalLight/DirectionalLight.x3d" title="Lighting » DirectionalLight">
|
|
431
|
-
<img src="https://create3000.github.io/media/examples/Lighting/DirectionalLight/screenshot-small.png" alt="DirectionalLight"/>
|
|
432
|
-
</a>
|
|
278
|
+
<a href="https://create3000.github.io/media/examples/Lighting/DirectionalLight/DirectionalLight.x3d" title="Lighting » DirectionalLight"><img src="https://create3000.github.io/media/examples/Lighting/DirectionalLight/screenshot-small.png" alt="DirectionalLight"/></a>
|
|
433
279
|
</td>
|
|
434
280
|
</tr>
|
|
435
281
|
<tr>
|
|
436
282
|
<td>
|
|
437
|
-
<a href="https://create3000.github.io/media/examples/Lighting/PointLight/PointLight.x3d" title="Lighting » PointLight">
|
|
438
|
-
<img src="https://create3000.github.io/media/examples/Lighting/PointLight/screenshot-small.png" alt="PointLight"/>
|
|
439
|
-
</a>
|
|
283
|
+
<a href="https://create3000.github.io/media/examples/Lighting/PointLight/PointLight.x3d" title="Lighting » PointLight"><img src="https://create3000.github.io/media/examples/Lighting/PointLight/screenshot-small.png" alt="PointLight"/></a>
|
|
440
284
|
</td>
|
|
441
285
|
<td>
|
|
442
|
-
<a href="https://create3000.github.io/media/examples/Lighting/Shadows/Shadows.x3d" title="Lighting » Shadows">
|
|
443
|
-
<img src="https://create3000.github.io/media/examples/Lighting/Shadows/screenshot-small.png" alt="Shadows"/>
|
|
444
|
-
</a>
|
|
286
|
+
<a href="https://create3000.github.io/media/examples/Lighting/Shadows/Shadows.x3d" title="Lighting » Shadows"><img src="https://create3000.github.io/media/examples/Lighting/Shadows/screenshot-small.png" alt="Shadows"/></a>
|
|
445
287
|
</td>
|
|
446
288
|
<td>
|
|
447
|
-
<a href="https://create3000.github.io/media/examples/Lighting/SpotLight/SpotLight.x3d" title="Lighting » SpotLight">
|
|
448
|
-
<img src="https://create3000.github.io/media/examples/Lighting/SpotLight/screenshot-small.png" alt="SpotLight"/>
|
|
449
|
-
</a>
|
|
289
|
+
<a href="https://create3000.github.io/media/examples/Lighting/SpotLight/SpotLight.x3d" title="Lighting » SpotLight"><img src="https://create3000.github.io/media/examples/Lighting/SpotLight/screenshot-small.png" alt="SpotLight"/></a>
|
|
450
290
|
</td>
|
|
451
291
|
<td>
|
|
452
|
-
<a href="https://create3000.github.io/media/examples/NURBS/NurbsCurve/NurbsCurve.x3d" title="NURBS » NurbsCurve">
|
|
453
|
-
<img src="https://create3000.github.io/media/examples/NURBS/NurbsCurve/screenshot-small.png" alt="NurbsCurve"/>
|
|
454
|
-
</a>
|
|
292
|
+
<a href="https://create3000.github.io/media/examples/NURBS/NurbsCurve/NurbsCurve.x3d" title="NURBS » NurbsCurve"><img src="https://create3000.github.io/media/examples/NURBS/NurbsCurve/screenshot-small.png" alt="NurbsCurve"/></a>
|
|
455
293
|
</td>
|
|
456
294
|
<td>
|
|
457
|
-
<a href="https://create3000.github.io/media/examples/NURBS/NurbsPatchSurface/NurbsPatchSurface.x3d" title="NURBS » NurbsPatchSurface">
|
|
458
|
-
<img src="https://create3000.github.io/media/examples/NURBS/NurbsPatchSurface/screenshot-small.png" alt="NurbsPatchSurface"/>
|
|
459
|
-
</a>
|
|
295
|
+
<a href="https://create3000.github.io/media/examples/NURBS/NurbsPatchSurface/NurbsPatchSurface.x3d" title="NURBS » NurbsPatchSurface"><img src="https://create3000.github.io/media/examples/NURBS/NurbsPatchSurface/screenshot-small.png" alt="NurbsPatchSurface"/></a>
|
|
460
296
|
</td>
|
|
461
297
|
<td>
|
|
462
|
-
<a href="https://create3000.github.io/media/examples/NURBS/NurbsSweptSurface/NurbsSweptSurface.x3d" title="NURBS » NurbsSweptSurface">
|
|
463
|
-
<img src="https://create3000.github.io/media/examples/NURBS/NurbsSweptSurface/screenshot-small.png" alt="NurbsSweptSurface"/>
|
|
464
|
-
</a>
|
|
298
|
+
<a href="https://create3000.github.io/media/examples/NURBS/NurbsSweptSurface/NurbsSweptSurface.x3d" title="NURBS » NurbsSweptSurface"><img src="https://create3000.github.io/media/examples/NURBS/NurbsSweptSurface/screenshot-small.png" alt="NurbsSweptSurface"/></a>
|
|
465
299
|
</td>
|
|
466
300
|
<td>
|
|
467
|
-
<a href="https://create3000.github.io/media/examples/Navigation/Billboard/Billboard.x3d" title="Navigation » Billboard">
|
|
468
|
-
<img src="https://create3000.github.io/media/examples/Navigation/Billboard/screenshot-small.png" alt="Billboard"/>
|
|
469
|
-
</a>
|
|
301
|
+
<a href="https://create3000.github.io/media/examples/Navigation/Billboard/Billboard.x3d" title="Navigation » Billboard"><img src="https://create3000.github.io/media/examples/Navigation/Billboard/screenshot-small.png" alt="Billboard"/></a>
|
|
470
302
|
</td>
|
|
471
303
|
</tr>
|
|
472
304
|
<tr>
|
|
473
305
|
<td>
|
|
474
|
-
<a href="https://create3000.github.io/media/examples/Navigation/Collision/Collision.x3d" title="Navigation » Collision">
|
|
475
|
-
<img src="https://create3000.github.io/media/examples/Navigation/Collision/screenshot-small.png" alt="Collision"/>
|
|
476
|
-
</a>
|
|
306
|
+
<a href="https://create3000.github.io/media/examples/Navigation/Collision/Collision.x3d" title="Navigation » Collision"><img src="https://create3000.github.io/media/examples/Navigation/Collision/screenshot-small.png" alt="Collision"/></a>
|
|
477
307
|
</td>
|
|
478
308
|
<td>
|
|
479
|
-
<a href="https://create3000.github.io/media/examples/Navigation/LogarithmicDepthBuffer/LogarithmicDepthBuffer.x3d" title="Navigation » LogarithmicDepthBuffer">
|
|
480
|
-
<img src="https://create3000.github.io/media/examples/Navigation/LogarithmicDepthBuffer/screenshot-small.png" alt="LogarithmicDepthBuffer"/>
|
|
481
|
-
</a>
|
|
309
|
+
<a href="https://create3000.github.io/media/examples/Navigation/LogarithmicDepthBuffer/LogarithmicDepthBuffer.x3d" title="Navigation » LogarithmicDepthBuffer"><img src="https://create3000.github.io/media/examples/Navigation/LogarithmicDepthBuffer/screenshot-small.png" alt="LogarithmicDepthBuffer"/></a>
|
|
482
310
|
</td>
|
|
483
311
|
<td>
|
|
484
|
-
<a href="https://create3000.github.io/media/examples/Navigation/NavigationInfo/NavigationInfo.x3d" title="Navigation » NavigationInfo">
|
|
485
|
-
<img src="https://create3000.github.io/media/examples/Navigation/NavigationInfo/screenshot-small.png" alt="NavigationInfo"/>
|
|
486
|
-
</a>
|
|
312
|
+
<a href="https://create3000.github.io/media/examples/Navigation/NavigationInfo/NavigationInfo.x3d" title="Navigation » NavigationInfo"><img src="https://create3000.github.io/media/examples/Navigation/NavigationInfo/screenshot-small.png" alt="NavigationInfo"/></a>
|
|
487
313
|
</td>
|
|
488
314
|
<td>
|
|
489
|
-
<a href="https://create3000.github.io/media/examples/Navigation/OrthoViewpoint/OrthoViewpoint.x3d" title="Navigation » OrthoViewpoint">
|
|
490
|
-
<img src="https://create3000.github.io/media/examples/Navigation/OrthoViewpoint/screenshot-small.png" alt="OrthoViewpoint"/>
|
|
491
|
-
</a>
|
|
315
|
+
<a href="https://create3000.github.io/media/examples/Navigation/OrthoViewpoint/OrthoViewpoint.x3d" title="Navigation » OrthoViewpoint"><img src="https://create3000.github.io/media/examples/Navigation/OrthoViewpoint/screenshot-small.png" alt="OrthoViewpoint"/></a>
|
|
492
316
|
</td>
|
|
493
317
|
<td>
|
|
494
|
-
<a href="https://create3000.github.io/media/examples/Navigation/Viewpoint/Viewpoint.x3d" title="Navigation » Viewpoint">
|
|
495
|
-
<img src="https://create3000.github.io/media/examples/Navigation/Viewpoint/screenshot-small.png" alt="Viewpoint"/>
|
|
496
|
-
</a>
|
|
318
|
+
<a href="https://create3000.github.io/media/examples/Navigation/Viewpoint/Viewpoint.x3d" title="Navigation » Viewpoint"><img src="https://create3000.github.io/media/examples/Navigation/Viewpoint/screenshot-small.png" alt="Viewpoint"/></a>
|
|
497
319
|
</td>
|
|
498
320
|
<td>
|
|
499
|
-
<a href="https://create3000.github.io/media/examples/Networking/Anchor/Anchor.x3d" title="Networking » Anchor">
|
|
500
|
-
<img src="https://create3000.github.io/media/examples/Networking/Anchor/screenshot-small.png" alt="Anchor"/>
|
|
501
|
-
</a>
|
|
321
|
+
<a href="https://create3000.github.io/media/examples/Networking/Anchor/Anchor.x3d" title="Networking » Anchor"><img src="https://create3000.github.io/media/examples/Networking/Anchor/screenshot-small.png" alt="Anchor"/></a>
|
|
502
322
|
</td>
|
|
503
323
|
<td>
|
|
504
|
-
<a href="https://create3000.github.io/media/examples/Networking/Inline/Inline.x3d" title="Networking » Inline">
|
|
505
|
-
<img src="https://create3000.github.io/media/examples/Networking/Inline/screenshot-small.png" alt="Inline"/>
|
|
506
|
-
</a>
|
|
324
|
+
<a href="https://create3000.github.io/media/examples/Networking/Inline/Inline.x3d" title="Networking » Inline"><img src="https://create3000.github.io/media/examples/Networking/Inline/screenshot-small.png" alt="Inline"/></a>
|
|
507
325
|
</td>
|
|
508
326
|
</tr>
|
|
509
327
|
<tr>
|
|
510
328
|
<td>
|
|
511
|
-
<a href="https://create3000.github.io/media/examples/Networking/LoadSensor/LoadSensor.x3d" title="Networking » LoadSensor">
|
|
512
|
-
<img src="https://create3000.github.io/media/examples/Networking/LoadSensor/screenshot-small.png" alt="LoadSensor"/>
|
|
513
|
-
</a>
|
|
329
|
+
<a href="https://create3000.github.io/media/examples/Networking/LoadSensor/LoadSensor.x3d" title="Networking » LoadSensor"><img src="https://create3000.github.io/media/examples/Networking/LoadSensor/screenshot-small.png" alt="LoadSensor"/></a>
|
|
514
330
|
</td>
|
|
515
331
|
<td>
|
|
516
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/ConeEmitter/ConeEmitter.x3d" title="ParticleSystems » ConeEmitter">
|
|
517
|
-
<img src="https://create3000.github.io/media/examples/ParticleSystems/ConeEmitter/screenshot-small.png" alt="ConeEmitter"/>
|
|
518
|
-
</a>
|
|
332
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/ConeEmitter/ConeEmitter.x3d" title="ParticleSystems » ConeEmitter"><img src="https://create3000.github.io/media/examples/ParticleSystems/ConeEmitter/screenshot-small.png" alt="ConeEmitter"/></a>
|
|
519
333
|
</td>
|
|
520
334
|
<td>
|
|
521
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/ExplosionEmitter/ExplosionEmitter.x3d" title="ParticleSystems » ExplosionEmitter">
|
|
522
|
-
<img src="https://create3000.github.io/media/examples/ParticleSystems/ExplosionEmitter/screenshot-small.png" alt="ExplosionEmitter"/>
|
|
523
|
-
</a>
|
|
335
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/ExplosionEmitter/ExplosionEmitter.x3d" title="ParticleSystems » ExplosionEmitter"><img src="https://create3000.github.io/media/examples/ParticleSystems/ExplosionEmitter/screenshot-small.png" alt="ExplosionEmitter"/></a>
|
|
524
336
|
</td>
|
|
525
337
|
<td>
|
|
526
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/ForcePhysicsModel/ForcePhysicsModel.x3d" title="ParticleSystems » ForcePhysicsModel">
|
|
527
|
-
<img src="https://create3000.github.io/media/examples/ParticleSystems/ForcePhysicsModel/screenshot-small.png" alt="ForcePhysicsModel"/>
|
|
528
|
-
</a>
|
|
338
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/ForcePhysicsModel/ForcePhysicsModel.x3d" title="ParticleSystems » ForcePhysicsModel"><img src="https://create3000.github.io/media/examples/ParticleSystems/ForcePhysicsModel/screenshot-small.png" alt="ForcePhysicsModel"/></a>
|
|
529
339
|
</td>
|
|
530
340
|
<td>
|
|
531
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/ParticleSystem/ParticleSystem.x3d" title="ParticleSystems » ParticleSystem">
|
|
532
|
-
<img src="https://create3000.github.io/media/examples/ParticleSystems/ParticleSystem/screenshot-small.png" alt="ParticleSystem"/>
|
|
533
|
-
</a>
|
|
341
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/ParticleSystem/ParticleSystem.x3d" title="ParticleSystems » ParticleSystem"><img src="https://create3000.github.io/media/examples/ParticleSystems/ParticleSystem/screenshot-small.png" alt="ParticleSystem"/></a>
|
|
534
342
|
</td>
|
|
535
343
|
<td>
|
|
536
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/PointEmitter/PointEmitter.x3d" title="ParticleSystems » PointEmitter">
|
|
537
|
-
<img src="https://create3000.github.io/media/examples/ParticleSystems/PointEmitter/screenshot-small.png" alt="PointEmitter"/>
|
|
538
|
-
</a>
|
|
344
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/PointEmitter/PointEmitter.x3d" title="ParticleSystems » PointEmitter"><img src="https://create3000.github.io/media/examples/ParticleSystems/PointEmitter/screenshot-small.png" alt="PointEmitter"/></a>
|
|
539
345
|
</td>
|
|
540
346
|
<td>
|
|
541
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/PolylineEmitter/PolylineEmitter.x3d" title="ParticleSystems » PolylineEmitter">
|
|
542
|
-
<img src="https://create3000.github.io/media/examples/ParticleSystems/PolylineEmitter/screenshot-small.png" alt="PolylineEmitter"/>
|
|
543
|
-
</a>
|
|
347
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/PolylineEmitter/PolylineEmitter.x3d" title="ParticleSystems » PolylineEmitter"><img src="https://create3000.github.io/media/examples/ParticleSystems/PolylineEmitter/screenshot-small.png" alt="PolylineEmitter"/></a>
|
|
544
348
|
</td>
|
|
545
349
|
</tr>
|
|
546
350
|
<tr>
|
|
547
351
|
<td>
|
|
548
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/SurfaceEmitter/SurfaceEmitter.x3d" title="ParticleSystems » SurfaceEmitter">
|
|
549
|
-
<img src="https://create3000.github.io/media/examples/ParticleSystems/SurfaceEmitter/screenshot-small.png" alt="SurfaceEmitter"/>
|
|
550
|
-
</a>
|
|
352
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/SurfaceEmitter/SurfaceEmitter.x3d" title="ParticleSystems » SurfaceEmitter"><img src="https://create3000.github.io/media/examples/ParticleSystems/SurfaceEmitter/screenshot-small.png" alt="SurfaceEmitter"/></a>
|
|
551
353
|
</td>
|
|
552
354
|
<td>
|
|
553
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/VolumeEmitter/VolumeEmitter.x3d" title="ParticleSystems » VolumeEmitter">
|
|
554
|
-
<img src="https://create3000.github.io/media/examples/ParticleSystems/VolumeEmitter/screenshot-small.png" alt="VolumeEmitter"/>
|
|
555
|
-
</a>
|
|
355
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/VolumeEmitter/VolumeEmitter.x3d" title="ParticleSystems » VolumeEmitter"><img src="https://create3000.github.io/media/examples/ParticleSystems/VolumeEmitter/screenshot-small.png" alt="VolumeEmitter"/></a>
|
|
556
356
|
</td>
|
|
557
357
|
<td>
|
|
558
|
-
<a href="https://create3000.github.io/media/examples/ParticleSystems/WindPhysicsModel/WindPhysicsModel.x3d" title="ParticleSystems » WindPhysicsModel">
|
|
559
|
-
<img src="https://create3000.github.io/media/examples/ParticleSystems/WindPhysicsModel/screenshot-small.png" alt="WindPhysicsModel"/>
|
|
560
|
-
</a>
|
|
358
|
+
<a href="https://create3000.github.io/media/examples/ParticleSystems/WindPhysicsModel/WindPhysicsModel.x3d" title="ParticleSystems » WindPhysicsModel"><img src="https://create3000.github.io/media/examples/ParticleSystems/WindPhysicsModel/screenshot-small.png" alt="WindPhysicsModel"/></a>
|
|
561
359
|
</td>
|
|
562
360
|
<td>
|
|
563
|
-
<a href="https://create3000.github.io/media/examples/Picking/LinePickSensor/LinePickSensor.x3d" title="Picking » LinePickSensor">
|
|
564
|
-
<img src="https://create3000.github.io/media/examples/Picking/LinePickSensor/screenshot-small.png" alt="LinePickSensor"/>
|
|
565
|
-
</a>
|
|
361
|
+
<a href="https://create3000.github.io/media/examples/Picking/LinePickSensor/LinePickSensor.x3d" title="Picking » LinePickSensor"><img src="https://create3000.github.io/media/examples/Picking/LinePickSensor/screenshot-small.png" alt="LinePickSensor"/></a>
|
|
566
362
|
</td>
|
|
567
363
|
<td>
|
|
568
|
-
<a href="https://create3000.github.io/media/examples/Picking/PointPickSensor/PointPickSensor.x3d" title="Picking » PointPickSensor">
|
|
569
|
-
<img src="https://create3000.github.io/media/examples/Picking/PointPickSensor/screenshot-small.png" alt="PointPickSensor"/>
|
|
570
|
-
</a>
|
|
364
|
+
<a href="https://create3000.github.io/media/examples/Picking/PointPickSensor/PointPickSensor.x3d" title="Picking » PointPickSensor"><img src="https://create3000.github.io/media/examples/Picking/PointPickSensor/screenshot-small.png" alt="PointPickSensor"/></a>
|
|
571
365
|
</td>
|
|
572
366
|
<td>
|
|
573
|
-
<a href="https://create3000.github.io/media/examples/Picking/PrimitivePickSensor/PrimitivePickSensor.x3d" title="Picking » PrimitivePickSensor">
|
|
574
|
-
<img src="https://create3000.github.io/media/examples/Picking/PrimitivePickSensor/screenshot-small.png" alt="PrimitivePickSensor"/>
|
|
575
|
-
</a>
|
|
367
|
+
<a href="https://create3000.github.io/media/examples/Picking/PrimitivePickSensor/PrimitivePickSensor.x3d" title="Picking » PrimitivePickSensor"><img src="https://create3000.github.io/media/examples/Picking/PrimitivePickSensor/screenshot-small.png" alt="PrimitivePickSensor"/></a>
|
|
576
368
|
</td>
|
|
577
369
|
<td>
|
|
578
|
-
<a href="https://create3000.github.io/media/examples/PointingDeviceSensor/CylinderSensor/CylinderSensor.x3d" title="PointingDeviceSensor » CylinderSensor">
|
|
579
|
-
<img src="https://create3000.github.io/media/examples/PointingDeviceSensor/CylinderSensor/screenshot-small.png" alt="CylinderSensor"/>
|
|
580
|
-
</a>
|
|
370
|
+
<a href="https://create3000.github.io/media/examples/PointingDeviceSensor/CylinderSensor/CylinderSensor.x3d" title="PointingDeviceSensor » CylinderSensor"><img src="https://create3000.github.io/media/examples/PointingDeviceSensor/CylinderSensor/screenshot-small.png" alt="CylinderSensor"/></a>
|
|
581
371
|
</td>
|
|
582
372
|
</tr>
|
|
583
373
|
<tr>
|
|
584
374
|
<td>
|
|
585
|
-
<a href="https://create3000.github.io/media/examples/PointingDeviceSensor/PlaneSensor/PlaneSensor.x3d" title="PointingDeviceSensor » PlaneSensor">
|
|
586
|
-
<img src="https://create3000.github.io/media/examples/PointingDeviceSensor/PlaneSensor/screenshot-small.png" alt="PlaneSensor"/>
|
|
587
|
-
</a>
|
|
375
|
+
<a href="https://create3000.github.io/media/examples/PointingDeviceSensor/PlaneSensor/PlaneSensor.x3d" title="PointingDeviceSensor » PlaneSensor"><img src="https://create3000.github.io/media/examples/PointingDeviceSensor/PlaneSensor/screenshot-small.png" alt="PlaneSensor"/></a>
|
|
588
376
|
</td>
|
|
589
377
|
<td>
|
|
590
|
-
<a href="https://create3000.github.io/media/examples/
|
|
591
|
-
<img src="https://create3000.github.io/media/examples/ProjectiveTextureMapping/TextureProjector/screenshot-small.png" alt="TextureProjector"/>
|
|
592
|
-
</a>
|
|
378
|
+
<a href="https://create3000.github.io/media/examples/Rendering/ClipPlane/ClipPlane.x3d" title="Rendering » ClipPlane"><img src="https://create3000.github.io/media/examples/Rendering/ClipPlane/screenshot-small.png" alt="ClipPlane"/></a>
|
|
593
379
|
</td>
|
|
594
380
|
<td>
|
|
595
|
-
<a href="https://create3000.github.io/media/examples/Rendering/
|
|
596
|
-
<img src="https://create3000.github.io/media/examples/Rendering/ClipPlane/screenshot-small.png" alt="ClipPlane"/>
|
|
597
|
-
</a>
|
|
381
|
+
<a href="https://create3000.github.io/media/examples/Rendering/Color/Color.x3d" title="Rendering » Color"><img src="https://create3000.github.io/media/examples/Rendering/Color/screenshot-small.png" alt="Color"/></a>
|
|
598
382
|
</td>
|
|
599
383
|
<td>
|
|
600
|
-
<a href="https://create3000.github.io/media/examples/Rendering/
|
|
601
|
-
<img src="https://create3000.github.io/media/examples/Rendering/Color/screenshot-small.png" alt="Color"/>
|
|
602
|
-
</a>
|
|
384
|
+
<a href="https://create3000.github.io/media/examples/Rendering/ColorRGBA/ColorRGBA.x3d" title="Rendering » ColorRGBA"><img src="https://create3000.github.io/media/examples/Rendering/ColorRGBA/screenshot-small.png" alt="ColorRGBA"/></a>
|
|
603
385
|
</td>
|
|
604
386
|
<td>
|
|
605
|
-
<a href="https://create3000.github.io/media/examples/Rendering/
|
|
606
|
-
<img src="https://create3000.github.io/media/examples/Rendering/ColorRGBA/screenshot-small.png" alt="ColorRGBA"/>
|
|
607
|
-
</a>
|
|
387
|
+
<a href="https://create3000.github.io/media/examples/Rendering/Coordinate/Coordinate.x3d" title="Rendering » Coordinate"><img src="https://create3000.github.io/media/examples/Rendering/Coordinate/screenshot-small.png" alt="Coordinate"/></a>
|
|
608
388
|
</td>
|
|
609
389
|
<td>
|
|
610
|
-
<a href="https://create3000.github.io/media/examples/Rendering/
|
|
611
|
-
<img src="https://create3000.github.io/media/examples/Rendering/Coordinate/screenshot-small.png" alt="Coordinate"/>
|
|
612
|
-
</a>
|
|
390
|
+
<a href="https://create3000.github.io/media/examples/Rendering/IndexedLineSet/IndexedLineSet.x3d" title="Rendering » IndexedLineSet"><img src="https://create3000.github.io/media/examples/Rendering/IndexedLineSet/screenshot-small.png" alt="IndexedLineSet"/></a>
|
|
613
391
|
</td>
|
|
614
392
|
<td>
|
|
615
|
-
<a href="https://create3000.github.io/media/examples/Rendering/
|
|
616
|
-
<img src="https://create3000.github.io/media/examples/Rendering/IndexedLineSet/screenshot-small.png" alt="IndexedLineSet"/>
|
|
617
|
-
</a>
|
|
393
|
+
<a href="https://create3000.github.io/media/examples/Rendering/IndexedTriangleFanSet/IndexedTriangleFanSet.x3d" title="Rendering » IndexedTriangleFanSet"><img src="https://create3000.github.io/media/examples/Rendering/IndexedTriangleFanSet/screenshot-small.png" alt="IndexedTriangleFanSet"/></a>
|
|
618
394
|
</td>
|
|
619
395
|
</tr>
|
|
620
396
|
<tr>
|
|
621
397
|
<td>
|
|
622
|
-
<a href="https://create3000.github.io/media/examples/Rendering/
|
|
623
|
-
<img src="https://create3000.github.io/media/examples/Rendering/IndexedTriangleFanSet/screenshot-small.png" alt="IndexedTriangleFanSet"/>
|
|
624
|
-
</a>
|
|
398
|
+
<a href="https://create3000.github.io/media/examples/Rendering/IndexedTriangleSet/IndexedTriangleSet.x3d" title="Rendering » IndexedTriangleSet"><img src="https://create3000.github.io/media/examples/Rendering/IndexedTriangleSet/screenshot-small.png" alt="IndexedTriangleSet"/></a>
|
|
625
399
|
</td>
|
|
626
400
|
<td>
|
|
627
|
-
<a href="https://create3000.github.io/media/examples/Rendering/
|
|
628
|
-
<img src="https://create3000.github.io/media/examples/Rendering/IndexedTriangleSet/screenshot-small.png" alt="IndexedTriangleSet"/>
|
|
629
|
-
</a>
|
|
401
|
+
<a href="https://create3000.github.io/media/examples/Rendering/LineSet/LineSet.x3d" title="Rendering » LineSet"><img src="https://create3000.github.io/media/examples/Rendering/LineSet/screenshot-small.png" alt="LineSet"/></a>
|
|
630
402
|
</td>
|
|
631
403
|
<td>
|
|
632
|
-
<a href="https://create3000.github.io/media/examples/Rendering/
|
|
633
|
-
<img src="https://create3000.github.io/media/examples/Rendering/LineSet/screenshot-small.png" alt="LineSet"/>
|
|
634
|
-
</a>
|
|
404
|
+
<a href="https://create3000.github.io/media/examples/Rendering/PointSet/PointSet.x3d" title="Rendering » PointSet"><img src="https://create3000.github.io/media/examples/Rendering/PointSet/screenshot-small.png" alt="PointSet"/></a>
|
|
635
405
|
</td>
|
|
636
406
|
<td>
|
|
637
|
-
<a href="https://create3000.github.io/media/examples/
|
|
638
|
-
<img src="https://create3000.github.io/media/examples/Rendering/PointSet/screenshot-small.png" alt="PointSet"/>
|
|
639
|
-
</a>
|
|
407
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/BallJoint/BallJoint.x3d" title="RigidBodyPhysics » BallJoint"><img src="https://create3000.github.io/media/examples/RigidBodyPhysics/BallJoint/screenshot-small.png" alt="BallJoint"/></a>
|
|
640
408
|
</td>
|
|
641
409
|
<td>
|
|
642
|
-
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/
|
|
643
|
-
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/BallJoint/screenshot-small.png" alt="BallJoint"/>
|
|
644
|
-
</a>
|
|
410
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/CollidableShape/CollidableShape.x3d" title="RigidBodyPhysics » CollidableShape"><img src="https://create3000.github.io/media/examples/RigidBodyPhysics/CollidableShape/screenshot-small.png" alt="CollidableShape"/></a>
|
|
645
411
|
</td>
|
|
646
412
|
<td>
|
|
647
|
-
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/
|
|
648
|
-
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/CollidableShape/screenshot-small.png" alt="CollidableShape"/>
|
|
649
|
-
</a>
|
|
413
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/CollisionCollection/CollisionCollection.x3d" title="RigidBodyPhysics » CollisionCollection"><img src="https://create3000.github.io/media/examples/RigidBodyPhysics/CollisionCollection/screenshot-small.png" alt="CollisionCollection"/></a>
|
|
650
414
|
</td>
|
|
651
415
|
<td>
|
|
652
|
-
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/
|
|
653
|
-
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/CollisionCollection/screenshot-small.png" alt="CollisionCollection"/>
|
|
654
|
-
</a>
|
|
416
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/RigidBody/RigidBody.x3d" title="RigidBodyPhysics » RigidBody"><img src="https://create3000.github.io/media/examples/RigidBodyPhysics/RigidBody/screenshot-small.png" alt="RigidBody"/></a>
|
|
655
417
|
</td>
|
|
656
418
|
</tr>
|
|
657
419
|
<tr>
|
|
658
420
|
<td>
|
|
659
|
-
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/
|
|
660
|
-
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/RigidBody/screenshot-small.png" alt="RigidBody"/>
|
|
661
|
-
</a>
|
|
421
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/RigidBodyCollection/RigidBodyCollection.x3d" title="RigidBodyPhysics » RigidBodyCollection"><img src="https://create3000.github.io/media/examples/RigidBodyPhysics/RigidBodyCollection/screenshot-small.png" alt="RigidBodyCollection"/></a>
|
|
662
422
|
</td>
|
|
663
423
|
<td>
|
|
664
|
-
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/
|
|
665
|
-
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/RigidBodyCollection/screenshot-small.png" alt="RigidBodyCollection"/>
|
|
666
|
-
</a>
|
|
424
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/SingleAxisHingeJoint/SingleAxisHingeJoint.x3d" title="RigidBodyPhysics » SingleAxisHingeJoint"><img src="https://create3000.github.io/media/examples/RigidBodyPhysics/SingleAxisHingeJoint/screenshot-small.png" alt="SingleAxisHingeJoint"/></a>
|
|
667
425
|
</td>
|
|
668
426
|
<td>
|
|
669
|
-
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/
|
|
670
|
-
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/SingleAxisHingeJoint/screenshot-small.png" alt="SingleAxisHingeJoint"/>
|
|
671
|
-
</a>
|
|
427
|
+
<a href="https://create3000.github.io/media/examples/RigidBodyPhysics/SliderJoint/SliderJoint.x3d" title="RigidBodyPhysics » SliderJoint"><img src="https://create3000.github.io/media/examples/RigidBodyPhysics/SliderJoint/screenshot-small.png" alt="SliderJoint"/></a>
|
|
672
428
|
</td>
|
|
673
429
|
<td>
|
|
674
|
-
<a href="https://create3000.github.io/media/examples/
|
|
675
|
-
<img src="https://create3000.github.io/media/examples/RigidBodyPhysics/SliderJoint/screenshot-small.png" alt="SliderJoint"/>
|
|
676
|
-
</a>
|
|
430
|
+
<a href="https://create3000.github.io/media/examples/Shaders/ComposedShader/ComposedShader.x3d" title="Shaders » ComposedShader"><img src="https://create3000.github.io/media/examples/Shaders/ComposedShader/screenshot-small.png" alt="ComposedShader"/></a>
|
|
677
431
|
</td>
|
|
678
432
|
<td>
|
|
679
|
-
<a href="https://create3000.github.io/media/examples/Shaders/
|
|
680
|
-
<img src="https://create3000.github.io/media/examples/Shaders/ComposedShader/screenshot-small.png" alt="ComposedShader"/>
|
|
681
|
-
</a>
|
|
433
|
+
<a href="https://create3000.github.io/media/examples/Shaders/FloatVertexAttribute/FloatVertexAttribute.x3d" title="Shaders » FloatVertexAttribute"><img src="https://create3000.github.io/media/examples/Shaders/FloatVertexAttribute/screenshot-small.png" alt="FloatVertexAttribute"/></a>
|
|
682
434
|
</td>
|
|
683
435
|
<td>
|
|
684
|
-
<a href="https://create3000.github.io/media/examples/Shaders/
|
|
685
|
-
<img src="https://create3000.github.io/media/examples/Shaders/FloatVertexAttribute/screenshot-small.png" alt="FloatVertexAttribute"/>
|
|
686
|
-
</a>
|
|
436
|
+
<a href="https://create3000.github.io/media/examples/Shaders/ShaderPart/ShaderPart.x3d" title="Shaders » ShaderPart"><img src="https://create3000.github.io/media/examples/Shaders/ShaderPart/screenshot-small.png" alt="ShaderPart"/></a>
|
|
687
437
|
</td>
|
|
688
438
|
<td>
|
|
689
|
-
<a href="https://create3000.github.io/media/examples/
|
|
690
|
-
<img src="https://create3000.github.io/media/examples/Shaders/ShaderPart/screenshot-small.png" alt="ShaderPart"/>
|
|
691
|
-
</a>
|
|
439
|
+
<a href="https://create3000.github.io/media/examples/Shape/Appearance/Appearance.x3d" title="Shape » Appearance"><img src="https://create3000.github.io/media/examples/Shape/Appearance/screenshot-small.png" alt="Appearance"/></a>
|
|
692
440
|
</td>
|
|
693
441
|
</tr>
|
|
694
442
|
<tr>
|
|
695
443
|
<td>
|
|
696
|
-
<a href="https://create3000.github.io/media/examples/Shape/
|
|
697
|
-
<img src="https://create3000.github.io/media/examples/Shape/Appearance/screenshot-small.png" alt="Appearance"/>
|
|
698
|
-
</a>
|
|
444
|
+
<a href="https://create3000.github.io/media/examples/Shape/FillProperties/FillProperties.x3d" title="Shape » FillProperties"><img src="https://create3000.github.io/media/examples/Shape/FillProperties/screenshot-small.png" alt="FillProperties"/></a>
|
|
699
445
|
</td>
|
|
700
446
|
<td>
|
|
701
|
-
<a href="https://create3000.github.io/media/examples/Shape/
|
|
702
|
-
<img src="https://create3000.github.io/media/examples/Shape/FillProperties/screenshot-small.png" alt="FillProperties"/>
|
|
703
|
-
</a>
|
|
447
|
+
<a href="https://create3000.github.io/media/examples/Shape/LineProperties/LineProperties.x3d" title="Shape » LineProperties"><img src="https://create3000.github.io/media/examples/Shape/LineProperties/screenshot-small.png" alt="LineProperties"/></a>
|
|
704
448
|
</td>
|
|
705
449
|
<td>
|
|
706
|
-
<a href="https://create3000.github.io/media/examples/Shape/
|
|
707
|
-
<img src="https://create3000.github.io/media/examples/Shape/LineProperties/screenshot-small.png" alt="LineProperties"/>
|
|
708
|
-
</a>
|
|
450
|
+
<a href="https://create3000.github.io/media/examples/Shape/Material/Material.x3d" title="Shape » Material"><img src="https://create3000.github.io/media/examples/Shape/Material/screenshot-small.png" alt="Material"/></a>
|
|
709
451
|
</td>
|
|
710
452
|
<td>
|
|
711
|
-
<a href="https://create3000.github.io/media/examples/Shape/
|
|
712
|
-
<img src="https://create3000.github.io/media/examples/Shape/Material/screenshot-small.png" alt="Material"/>
|
|
713
|
-
</a>
|
|
453
|
+
<a href="https://create3000.github.io/media/examples/Shape/TwoSidedMaterial/TwoSidedMaterial.x3d" title="Shape » TwoSidedMaterial"><img src="https://create3000.github.io/media/examples/Shape/TwoSidedMaterial/screenshot-small.png" alt="TwoSidedMaterial"/></a>
|
|
714
454
|
</td>
|
|
715
455
|
<td>
|
|
716
|
-
<a href="https://create3000.github.io/media/examples/
|
|
717
|
-
<img src="https://create3000.github.io/media/examples/Shape/TwoSidedMaterial/screenshot-small.png" alt="TwoSidedMaterial"/>
|
|
718
|
-
</a>
|
|
456
|
+
<a href="https://create3000.github.io/media/examples/Sound/AudioClip/AudioClip.x3d" title="Sound » AudioClip"><img src="https://create3000.github.io/media/examples/Sound/AudioClip/screenshot-small.png" alt="AudioClip"/></a>
|
|
719
457
|
</td>
|
|
720
458
|
<td>
|
|
721
|
-
<a href="https://create3000.github.io/media/examples/
|
|
722
|
-
<img src="https://create3000.github.io/media/examples/Sound/AudioClip/screenshot-small.png" alt="AudioClip"/>
|
|
723
|
-
</a>
|
|
459
|
+
<a href="https://create3000.github.io/media/examples/Text/FontStyle/FontStyle.x3d" title="Text » FontStyle"><img src="https://create3000.github.io/media/examples/Text/FontStyle/screenshot-small.png" alt="FontStyle"/></a>
|
|
724
460
|
</td>
|
|
725
461
|
<td>
|
|
726
|
-
<a href="https://create3000.github.io/media/examples/Text/
|
|
727
|
-
<img src="https://create3000.github.io/media/examples/Text/FontStyle/screenshot-small.png" alt="FontStyle"/>
|
|
728
|
-
</a>
|
|
462
|
+
<a href="https://create3000.github.io/media/examples/Text/Text/Text.x3d" title="Text » Text"><img src="https://create3000.github.io/media/examples/Text/Text/screenshot-small.png" alt="Text"/></a>
|
|
729
463
|
</td>
|
|
730
464
|
</tr>
|
|
731
465
|
<tr>
|
|
732
466
|
<td>
|
|
733
|
-
<a href="https://create3000.github.io/media/examples/
|
|
734
|
-
<img src="https://create3000.github.io/media/examples/Text/Text/screenshot-small.png" alt="Text"/>
|
|
735
|
-
</a>
|
|
467
|
+
<a href="https://create3000.github.io/media/examples/TextureProjector/TextureProjector/TextureProjector.x3d" title="TextureProjector » TextureProjector"><img src="https://create3000.github.io/media/examples/TextureProjector/TextureProjector/screenshot-small.png" alt="TextureProjector"/></a>
|
|
736
468
|
</td>
|
|
737
469
|
<td>
|
|
738
|
-
<a href="https://create3000.github.io/media/examples/Texturing/ImageTexture/ImageTexture.x3d" title="Texturing » ImageTexture">
|
|
739
|
-
<img src="https://create3000.github.io/media/examples/Texturing/ImageTexture/screenshot-small.png" alt="ImageTexture"/>
|
|
740
|
-
</a>
|
|
470
|
+
<a href="https://create3000.github.io/media/examples/Texturing/ImageTexture/ImageTexture.x3d" title="Texturing » ImageTexture"><img src="https://create3000.github.io/media/examples/Texturing/ImageTexture/screenshot-small.png" alt="ImageTexture"/></a>
|
|
741
471
|
</td>
|
|
742
472
|
<td>
|
|
743
|
-
<a href="https://create3000.github.io/media/examples/Texturing/MovieTexture/MovieTexture.x3d" title="Texturing » MovieTexture">
|
|
744
|
-
<img src="https://create3000.github.io/media/examples/Texturing/MovieTexture/screenshot-small.png" alt="MovieTexture"/>
|
|
745
|
-
</a>
|
|
473
|
+
<a href="https://create3000.github.io/media/examples/Texturing/MovieTexture/MovieTexture.x3d" title="Texturing » MovieTexture"><img src="https://create3000.github.io/media/examples/Texturing/MovieTexture/screenshot-small.png" alt="MovieTexture"/></a>
|
|
746
474
|
</td>
|
|
747
475
|
<td>
|
|
748
|
-
<a href="https://create3000.github.io/media/examples/Texturing/MultiTexture/MultiTexture.x3d" title="Texturing » MultiTexture">
|
|
749
|
-
<img src="https://create3000.github.io/media/examples/Texturing/MultiTexture/screenshot-small.png" alt="MultiTexture"/>
|
|
750
|
-
</a>
|
|
476
|
+
<a href="https://create3000.github.io/media/examples/Texturing/MultiTexture/MultiTexture.x3d" title="Texturing » MultiTexture"><img src="https://create3000.github.io/media/examples/Texturing/MultiTexture/screenshot-small.png" alt="MultiTexture"/></a>
|
|
751
477
|
</td>
|
|
752
478
|
<td>
|
|
753
|
-
<a href="https://create3000.github.io/media/examples/Texturing/PixelTexture/PixelTexture.x3d" title="Texturing » PixelTexture">
|
|
754
|
-
<img src="https://create3000.github.io/media/examples/Texturing/PixelTexture/screenshot-small.png" alt="PixelTexture"/>
|
|
755
|
-
</a>
|
|
479
|
+
<a href="https://create3000.github.io/media/examples/Texturing/PixelTexture/PixelTexture.x3d" title="Texturing » PixelTexture"><img src="https://create3000.github.io/media/examples/Texturing/PixelTexture/screenshot-small.png" alt="PixelTexture"/></a>
|
|
756
480
|
</td>
|
|
757
481
|
<td>
|
|
758
|
-
<a href="https://create3000.github.io/media/examples/Texturing3D/ImageTexture3D/ImageTexture3D.x3d" title="Texturing3D » ImageTexture3D">
|
|
759
|
-
<img src="https://create3000.github.io/media/examples/Texturing3D/ImageTexture3D/screenshot-small.png" alt="ImageTexture3D"/>
|
|
760
|
-
</a>
|
|
482
|
+
<a href="https://create3000.github.io/media/examples/Texturing3D/ImageTexture3D/ImageTexture3D.x3d" title="Texturing3D » ImageTexture3D"><img src="https://create3000.github.io/media/examples/Texturing3D/ImageTexture3D/screenshot-small.png" alt="ImageTexture3D"/></a>
|
|
761
483
|
</td>
|
|
762
484
|
<td>
|
|
763
|
-
<a href="https://create3000.github.io/media/examples/Time/TimeSensor/TimeSensor.x3d" title="Time » TimeSensor">
|
|
764
|
-
<img src="https://create3000.github.io/media/examples/Time/TimeSensor/screenshot-small.png" alt="TimeSensor"/>
|
|
765
|
-
</a>
|
|
485
|
+
<a href="https://create3000.github.io/media/examples/Time/TimeSensor/TimeSensor.x3d" title="Time » TimeSensor"><img src="https://create3000.github.io/media/examples/Time/TimeSensor/screenshot-small.png" alt="TimeSensor"/></a>
|
|
766
486
|
</td>
|
|
767
487
|
</tr>
|
|
768
488
|
<tr>
|
|
769
489
|
<td>
|
|
770
|
-
<a href="https://create3000.github.io/media/examples/VolumeRendering/EdgeEnhancementVolumeStyle/EdgeEnhancementVolumeStyle.x3d" title="VolumeRendering » EdgeEnhancementVolumeStyle">
|
|
771
|
-
<img src="https://create3000.github.io/media/examples/VolumeRendering/EdgeEnhancementVolumeStyle/screenshot-small.png" alt="EdgeEnhancementVolumeStyle"/>
|
|
772
|
-
</a>
|
|
490
|
+
<a href="https://create3000.github.io/media/examples/VolumeRendering/EdgeEnhancementVolumeStyle/EdgeEnhancementVolumeStyle.x3d" title="VolumeRendering » EdgeEnhancementVolumeStyle"><img src="https://create3000.github.io/media/examples/VolumeRendering/EdgeEnhancementVolumeStyle/screenshot-small.png" alt="EdgeEnhancementVolumeStyle"/></a>
|
|
773
491
|
</td>
|
|
774
492
|
<td>
|
|
775
|
-
<a href="https://create3000.github.io/media/examples/VolumeRendering/IsoSurfaceVolumeData/IsoSurfaceVolumeData.x3d" title="VolumeRendering » IsoSurfaceVolumeData">
|
|
776
|
-
<img src="https://create3000.github.io/media/examples/VolumeRendering/IsoSurfaceVolumeData/screenshot-small.png" alt="IsoSurfaceVolumeData"/>
|
|
777
|
-
</a>
|
|
493
|
+
<a href="https://create3000.github.io/media/examples/VolumeRendering/IsoSurfaceVolumeData/IsoSurfaceVolumeData.x3d" title="VolumeRendering » IsoSurfaceVolumeData"><img src="https://create3000.github.io/media/examples/VolumeRendering/IsoSurfaceVolumeData/screenshot-small.png" alt="IsoSurfaceVolumeData"/></a>
|
|
778
494
|
</td>
|
|
779
495
|
<td>
|
|
780
|
-
<a href="https://create3000.github.io/media/examples/VolumeRendering/SegmentedVolumeData/SegmentedVolumeData.x3d" title="VolumeRendering » SegmentedVolumeData">
|
|
781
|
-
<img src="https://create3000.github.io/media/examples/VolumeRendering/SegmentedVolumeData/screenshot-small.png" alt="SegmentedVolumeData"/>
|
|
782
|
-
</a>
|
|
496
|
+
<a href="https://create3000.github.io/media/examples/VolumeRendering/SegmentedVolumeData/SegmentedVolumeData.x3d" title="VolumeRendering » SegmentedVolumeData"><img src="https://create3000.github.io/media/examples/VolumeRendering/SegmentedVolumeData/screenshot-small.png" alt="SegmentedVolumeData"/></a>
|
|
783
497
|
</td>
|
|
784
498
|
<td>
|
|
785
|
-
<a href="https://create3000.github.io/media/examples/VolumeRendering/ShadedVolumeStyle/ShadedVolumeStyle.x3d" title="VolumeRendering » ShadedVolumeStyle">
|
|
786
|
-
<img src="https://create3000.github.io/media/examples/VolumeRendering/ShadedVolumeStyle/screenshot-small.png" alt="ShadedVolumeStyle"/>
|
|
787
|
-
</a>
|
|
499
|
+
<a href="https://create3000.github.io/media/examples/VolumeRendering/ShadedVolumeStyle/ShadedVolumeStyle.x3d" title="VolumeRendering » ShadedVolumeStyle"><img src="https://create3000.github.io/media/examples/VolumeRendering/ShadedVolumeStyle/screenshot-small.png" alt="ShadedVolumeStyle"/></a>
|
|
788
500
|
</td>
|
|
789
501
|
<td>
|
|
790
|
-
<a href="https://create3000.github.io/media/examples/VolumeRendering/ToneMappedVolumeStyle/ToneMappedVolumeStyle.x3d" title="VolumeRendering » ToneMappedVolumeStyle">
|
|
791
|
-
<img src="https://create3000.github.io/media/examples/VolumeRendering/ToneMappedVolumeStyle/screenshot-small.png" alt="ToneMappedVolumeStyle"/>
|
|
792
|
-
</a>
|
|
502
|
+
<a href="https://create3000.github.io/media/examples/VolumeRendering/ToneMappedVolumeStyle/ToneMappedVolumeStyle.x3d" title="VolumeRendering » ToneMappedVolumeStyle"><img src="https://create3000.github.io/media/examples/VolumeRendering/ToneMappedVolumeStyle/screenshot-small.png" alt="ToneMappedVolumeStyle"/></a>
|
|
793
503
|
</td>
|
|
794
504
|
<td>
|
|
795
|
-
<a href="https://create3000.github.io/media/examples/VolumeRendering/VolumeData/VolumeData.x3d" title="VolumeRendering » VolumeData">
|
|
796
|
-
<img src="https://create3000.github.io/media/examples/VolumeRendering/VolumeData/screenshot-small.png" alt="VolumeData"/>
|
|
797
|
-
</a>
|
|
505
|
+
<a href="https://create3000.github.io/media/examples/VolumeRendering/VolumeData/VolumeData.x3d" title="VolumeRendering » VolumeData"><img src="https://create3000.github.io/media/examples/VolumeRendering/VolumeData/screenshot-small.png" alt="VolumeData"/></a>
|
|
798
506
|
</td>
|
|
799
507
|
<td>
|
|
800
|
-
<a href="https://create3000.github.io/media/examples/X_ITE/BlendMode/BlendMode.x3d" title="X_ITE » BlendMode">
|
|
801
|
-
<img src="https://create3000.github.io/media/examples/X_ITE/BlendMode/screenshot-small.png" alt="BlendMode"/>
|
|
802
|
-
</a>
|
|
508
|
+
<a href="https://create3000.github.io/media/examples/X_ITE/BlendMode/BlendMode.x3d" title="X_ITE » BlendMode"><img src="https://create3000.github.io/media/examples/X_ITE/BlendMode/screenshot-small.png" alt="BlendMode"/></a>
|
|
803
509
|
</td>
|
|
804
510
|
</tr>
|
|
805
511
|
</table>
|