Skip to content

Commit

Permalink
Fix some anchor links in help (supercollider#2293)
Browse files Browse the repository at this point in the history
  • Loading branch information
vivid-synth authored and crucialfelix committed Aug 23, 2016
1 parent 43069db commit 1aeb853
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion HelpSource/Classes/Bus.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Get a new Bus that is a subset of this bus (see code::newFrom::).
subsection:: Asynchronous Control Bus Methods

The following commands apply only to control buses and are asynchronous. For synchronous access to control busses please
consult link::#Synchronous control bus methods::.
consult link::#Synchronous Control Bus Methods::.

method:: value
Set all channels to this float value. This command is asynchronous.
Expand Down
6 changes: 3 additions & 3 deletions HelpSource/Classes/Env.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Create a new envelope specification.

argument::levels
an array of levels. The first level is the initial value of the envelope. When the envelope is used with an EnvGen, levels can be any UGen (new level values are updated only when the envelope has reached that point).
When the array of levels contains itself an array, the envelope returns a multichannel output (for a discussion, see link::#multichannel expansion::)
When the array of levels contains itself an array, the envelope returns a multichannel output (for a discussion, see link::#Multichannel expansion::)

argument::times
an array of durations of segments in seconds. There should be one fewer duration than there are levels, but if shorter, the array is extended by wrapping around the given values.
Expand Down Expand Up @@ -270,7 +270,7 @@ Creates a new envelope specification where all the segments are horizontal lines

argument::levels
an array of levels. Levels can be any UGen (new level values are updated only when the envelope has reached that point).
When the array of levels contains itself an array, the envelope returns a multichannel output (for a discussion, see link::#multichannel expansion::)
When the array of levels contains itself an array, the envelope returns a multichannel output (for a discussion, see link::#Multichannel expansion::)

argument::times
an array of durations of segments in seconds. It should be the same size as the levels array.
Expand Down Expand Up @@ -616,7 +616,7 @@ argument::name
the plot window's label name. If nil, a name will be created for you.

method::asSignal
Returns a link::Classes/Signal:: of size strong::length:: created by sampling this Env at strong::length:: number of intervals. If the envelope has multiple channels (see link::#multichannel expansion::), this method returns an array of signals.
Returns a link::Classes/Signal:: of size strong::length:: created by sampling this Env at strong::length:: number of intervals. If the envelope has multiple channels (see link::#Multichannel expansion::), this method returns an array of signals.

method::asArray
Converts the Env to an link::Classes/Array:: in a specially ordered format. This allows for Env parameters to be settable arguments in a SynthDef. See example below under link::#-newClear::.
Expand Down
2 changes: 1 addition & 1 deletion HelpSource/Classes/InTrig.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Any time the bus is "touched", ie. has its value set (using "/c_set"
etc.), a single impulse trigger will be generated. Its amplitude is the
value that the bus was set to.

If the bus is set link::Classes/Bus#Synchronous control bus methods#synchronously:: no trigger will be generated.
If the bus is set link::Classes/Bus#Synchronous Control Bus Methods#synchronously:: no trigger will be generated.


classmethods::
Expand Down
12 changes: 6 additions & 6 deletions HelpSource/Tutorials/JITLib/jitlib_basic_concepts_02.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ external structure of the node proxy, referencing in proxyspace and environments
This document covers:

list::
## link::#a)_normal_environment_lookup#a) normal environment lookup::
## link::#b)_a_proxyspace_as_an_environment#b) a proxyspace as an environment::
## link::#c)_using_the_proxyspace_to_change_processes_on_the_fly#c) using the proxyspace to change processes on the fly::
## link::#d)_when_are_the_node_proxies_initialized?#d) when are the node proxies initialized?::
## link::#e)_moving_out_of_the_proxy_space#e) moving out of the proxy space::
## link::#f)_using_ProxySpace_together_with_other_Environments#f) using ProxySpace together with other Environments::
## link::#a) normal environment lookup#a) normal environment lookup::
## link::#b) a proxyspace as an environment#b) a proxyspace as an environment::
## link::#c) using the proxyspace to change processes on the fly#c) using the proxyspace to change processes on the fly::
## link::#d) when are the node proxies initialized?#d) when are the node proxies initialized?::
## link::#e) moving out of the proxy space#e) moving out of the proxy space::
## link::#f) using ProxySpace together with other Environments#f) using ProxySpace together with other Environments::
::

section::a) normal environment lookup
Expand Down
8 changes: 4 additions & 4 deletions HelpSource/Tutorials/JITLib/jitlib_basic_concepts_03.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ related:: Overviews/JITLib, Tutorials/JITLib/jitlib_basic_concepts_02, Tutorials
internal structure of the node proxy, node order and the parameter context

list::
## link::#a)_nodeproxy_slots#a) slots::
## link::#b)_fade_time#b) fadeTime::
## link::#c)_play/stop,_send/free,_pause/resume#c) play/stop, send/release, pause/resume, clear::
## link::#d)_the_parameter_context#d) the parameter context::
## link::#a) NodeProxy slots#a) slots::
## link::#b) fade time#b) fadeTime::
## link::#c) play/stop, send/free, pause/resume#c) play/stop, send/release, pause/resume, clear::
## link::#d) The parameter context#d) the parameter context::
::

A NodeProxy has two internal contexts in which the objects are inserted: The group, which is on the server, and the nodeMap, which is a client side parameter context. As the group can contain an order of synths, there is a client side representation, in which the source objects are stored (see link::Classes/Order::).
Expand Down
8 changes: 4 additions & 4 deletions HelpSource/Tutorials/JITLib/jitlib_basic_concepts_04.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ whenever the put method is called (or, in ProxySpace, the assignment operation =
Sometimes it is desirable to time these changes relative to a clock.

list::
## link::#a)_clock#a) clock::
## link::#b)_quant_and_offset#b) quant and offset::
## link::#c)_connecting_client_and_server_tempo#c) client and server tempo::
## link::#d)_sample_accurate_output#d) sample accurate output::
## link::#a) clock#a) clock::
## link::#b) quant and offset#b) quant and offset::
## link::#c) connecting client and server tempo#c) client and server tempo::
## link::#d) sample accurate output#d) sample accurate output::
::

section::a) clock
Expand Down

0 comments on commit 1aeb853

Please sign in to comment.