Related topics: graphics GUI
ShowScore(...)
this function is called internally by the GeoMaestro GUI
... it is not intended to be used elsewhere !
Related topics: csound
ShowSeg(wid, seg {,mode {,projmode,...}})
display segment seg in window wid
if projmode is not 0, calls
ShowProjOnSeg(wid, seg, mode, projmode, ...)
!! --> wid must be a window inheriting wGMw methods
mode is STORE, XOR or CLEAR (defaults to STORE)
See:
ShowProjOnSeg
ShowCircle
ShowProjOnCer
Related topics: graphics GUI
Signe(x)
returns 1 if x>=0, -1 otherwise
Related topics: math
SilentPhrase(len)
returns a void phrase of length len
Related topics: phrase
SilentScore(t)
returns a void score with duration t (in seconds)
(the duration is coded through f0 statement)
See:
ScoreF0
Related topics: csound
SmoothCtrl(ph {, mode})
interpolates all controllers in phrase ph according to mode
mode can be:
"lin" linear interpolation (this is the default)
"sin" using half cosine
"paraccv" using concave parabols
"paracvx" using convex parabols
See:
Interpolate
Related topics: controller
SortScore(score)
return score as sorted by Csound itself (in "score.srt")
this handles all macros, ramps, etc.. and is very fast.
requires that CSOUNDBINARY is correctly set, though..
WARNING: this function requires that score is a valid csound score.
if you want to sort a partial score, use OrderScore() instead
See:
OrderScore
SortToNumScore
Related topics: csound
SortToNumScore(score)
similar to SortScore, only return the score in numeric format
See:
SortScore
Related topics: csound
Spirale(t, rf {, toffset})
... to be used with ParaPiste ...
defines a spiral relatively to CentrePolaire:
-> r = rf*t
-> theta = t
-> toffset is added to t
See:
ParaPiste
PolarPiste
Related topics: piste math
SplitCtrl(m {, printflag})
translate the controller message m (a phrase) into an
array of format ["ch"= controller channel,
"n"= controller number,
"val"= controller value,
"name"= controller index in CtrlIMap (or "")
]
if printflag is 1, displays these infos at the console
if printflag is 2, returns them as a string instead of an array
See:
controller
Related topics: controller
StdScoreDisplay(o, sco, rect, d)
Standard score display function
this function is called by default to draw score representations
into Compositor boxes
Related topics: compositor custom csound
StripScore(sco {, kflag})
returns sco stripped of all lines that are not i-statements
if kflag = 1, does not perform arraycopy, so sco is actually changed
Related topics: csound
SupprimeIndex(ind,arr)
returns the array arr without the item whose index is ind
this function simply does a
delete arr[ind]
See:
ExtraitIndex
ExtraitItems
SupprimeItems
Related topics: array
SupprimeItems(marque,arr)
returns the array arr without the items whose value is marque
See:
ExtraitIndex
ExtraitItems
SupprimeIndex
Related topics: array