File tree Expand file tree Collapse file tree 10 files changed +11
-12
lines changed Expand file tree Collapse file tree 10 files changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ fun main() {
121
121
```
122
122
123
123
To generate random distributions of vectors see
124
- [orx-noise](https://guide.openrndr.org/OPENRNDRExtras /noise.html).
124
+ [orx-noise](https://guide.openrndr.org/ORX /noise.html).
125
125
126
126
"""
127
127
}
Original file line number Diff line number Diff line change @@ -177,6 +177,6 @@ fun main() {
177
177
A repository of ready-to-use filters for OPENRNDR can be found in
178
178
the [ORX repository](https://github.com/openrndr/orx/tree/master/orx-fx),
179
179
a partial index of the filters can be found in the
180
- [orx-fx chapter](https://guide.openrndr.org/OPENRNDRExtras /imageFilters.html)
180
+ [orx-fx chapter](https://guide.openrndr.org/ORX /imageFilters.html)
181
181
"""
182
182
}
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ fun main() {
35
35
geometry. A shade style can affect vertices, fragments or both.
36
36
37
37
A selection of preset ready-to-use shade styles is provided by
38
- [`orx-shade-styles`](https://guide.openrndr.org/OPENRNDRExtras /shadeStylePresets.html)
38
+ [`orx-shade-styles`](https://guide.openrndr.org/ORX /shadeStylePresets.html)
39
39
40
40
For those interested in authoring shade styles it is helpful to have
41
41
some basic understanding of shaders and GLSL.
@@ -372,8 +372,7 @@ fun main() {
372
372
373
373
* [ShadeStyleGLSL.kt](https://github.com/openrndr/openrndr/blob/master/openrndr-draw/src/jvmMain/kotlin/org/openrndr/draw/ShadeStyleGLSL.kt) (JVM)
374
374
* [ShadeStyleGLSL.kt](https://github.com/openrndr/openrndr/blob/master/openrndr-draw/src/jsMain/kotlin/org/openrndr/draw/ShadeStyleGLSL.kt) (webgl)
375
- * [ShaderGeneratorsGL3.kt](https://github.com/openrndr/openrndr/blob/master/openrndr-jvm/openrndr-gl3/src/jvmMain/kotlin/org/openrndr/internal/gl3/ShaderGeneratorsGL3.kt) (JVM)
376
- * [ShaderGeneratorsWebGL.kt](https://github.com/openrndr/openrndr/blob/master/openrndr-js/openrndr-webgl/src/jsMain/kotlin/org/openrndr/webgl/ShaderGeneratorsWebGL.kt) (webgl)
375
+ * [ShaderGeneratorsGLCommon.kt](https://github.com/openrndr/openrndr/blob/master/openrndr-gl-common/src/commonMain/kotlin/ShaderGeneratorsGLCommon.kt)
377
376
378
377
## Vertex and fragment preambles
379
378
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ fun main() {
24
24
environment. The `orx-olive` library
25
25
simplifies the work to be done to set up a live coding environment. Code
26
26
and additional documentation for the library can be found in the
27
- [Github repository](https://github.com/openrndr/orx/tree/master/orx-olive).
27
+ [Github repository](https://github.com/openrndr/orx/tree/master/orx-jvm/orx- olive).
28
28
29
29
## Prerequisites
30
30
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ fun main() {
38
38
39
39
The [orx-fx](https://github.com/openrndr/orx/tree/master/orx-fx) library
40
40
contains many filters that can be readily used. See the chapter
41
- [Filters and post-processing](https://guide.openrndr.org/advancedDrawing /filtersAndPostProcessing.html)
41
+ [Filters and post-processing](https://guide.openrndr.org/drawing /filtersAndPostProcessing.html)
42
42
for instructions on using them.
43
43
44
44
A (more-or-less) complete listing of the effects in orx-fx is maintained
Original file line number Diff line number Diff line change @@ -463,7 +463,7 @@ fun main() {
463
463
464
464
Blending describes how the contents of two layers are combined in a composite.
465
465
The blend functionality `orx-compositor` can be used with any
466
- [filter](https://guide.openrndr.org/advancedDrawing /filtersAndPostProcessing.html) that performs a blend
466
+ [filter](https://guide.openrndr.org/drawing /filtersAndPostProcessing.html) that performs a blend
467
467
operation. The `orx-fx` filter collection provides
468
468
[a selection of ready-made blend filters](https://github.com/openrndr/orx/tree/master/orx-fx#blends).
469
469
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ fun main() {
164
164
`orx-fx` provides.
165
165
166
166
The guide covers filters in the
167
- [Filter and Post-processing chapter](https://guide.openrndr.org/advancedDrawing /filtersAndPostProcessing.html)
167
+ [Filter and Post-processing chapter](https://guide.openrndr.org/drawing /filtersAndPostProcessing.html)
168
168
and an index of provided filters can be found in
169
169
[`orx-filter` index](https://guide.openrndr.org/ORX/imageFilters.html)
170
170
"""
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ fun main() {
25
25
# Shade style presets
26
26
27
27
The `orx-shade-styles` library provides a number of preset
28
- [shade styles](https://guide.openrndr.org/advancedDrawing /shadeStyles.html)
28
+ [shade styles](https://guide.openrndr.org/drawing /shadeStyles.html)
29
29
30
30
## Prerequisites
31
31
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ fun main() {
32
32
33
33
Headless applications cannot draw on the backbuffer, because there
34
34
is no backbuffer. In order to draw you need to create a
35
- [RenderTarget](https://guide.openrndr.org/advancedDrawing /renderTargets.html) and draw on it.
35
+ [RenderTarget](https://guide.openrndr.org/drawing /renderTargets.html) and draw on it.
36
36
Render target contents can easily be saved to file, or rendered to
37
37
[video](https://guide.openrndr.org/videos/writingToVideoFiles.html).
38
38
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ fun main() {
28
28
but color buffers have to be configured correctly for such a use.
29
29
30
30
Note: this mechanism is used internally in
31
- [`orx-kinect`](https://guide.openrndr.org/OPENRNDRExtras /kinect.html)
31
+ [`orx-kinect`](https://guide.openrndr.org/ORX /kinect.html)
32
32
to process raw kinect data directly on GPU, as the depth readings are
33
33
provided as integer numbers in the range
34
34
of `0-2047` or `0-4096` depending on the kinect version.
You can’t perform that action at this time.
0 commit comments