blob: f5466a0e1fd13d5c745787bdbf94b4656d120987 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
%D \module
%D [ file=supp-ran,
%D version=2008-10-31,
%D title=\CONTEXT\ Support Macros,
%D subtitle=Random Number Generation,
%D author=Hans Hagen,
%D date=\currentdate,
%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.
\writestatus{loading}{ConTeXt Support Macros / Random Number Generation}
%D This module is downward compatible in the sense that we've kept
%D the user interface (which uses intermediate variables).
\registerctxluafile{supp-ran}{1.001}
\unexpanded\def\getrandomcount #1#2#3{#1=\ctxcommand{getrandomcounta(\number#2,\number#3)}\relax}
\unexpanded\def\getrandomdimen #1#2#3{#1=\ctxcommand{getrandomcounta(\number\dimexpr#2,\number\dimexpr#3)}\scaledpoint\relax}
\unexpanded\def\getrandomnumber#1#2#3{\edef#1{\ctxcommand{getrandomcounta(\number#2,\number#3)}}}
\unexpanded\def\getrandomfloat #1#2#3{\edef#1{\ctxcommand{getrandomcountb(\number\dimexpr#2\points,\number\dimexpr#3\points)}}}
\unexpanded\def\setrandomseed #1{\ctxcommand{setrandomseed(\number#1)}}
\unexpanded\def\getrandomseed #1{\edef#1{\ctxcommand{getrandomseed()}}}
\unexpanded\def\freezerandomseed {\ctxcommand{freezerandomseed()}}
\unexpanded\def\defrostrandomseed {\ctxcommand{defrostrandomseed()}}
\endinput
|