You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// - axiom: An initial module that represents the initial state of the Lindenmayer system.
79
79
/// - prng: An optional psuedo-random number generator to use for for randomness in rule productions.
80
80
/// - parameters: An instance of type you provide that the L-system provides to the rules you create for use as parameters.
81
-
publicstaticfunc create<PType:Sendable, RNGType:Sendable>(_ axiom:Module, with prng:RNGType?, using parameters:PType)->ParameterizedRandomContextualLSystem<PType,RNGType>{
81
+
publicstaticfunc create<PType:Sendable, RNGType:Sendable>(_ axiom:someModule, with prng:RNGType?, using parameters:PType)->ParameterizedRandomContextualLSystem<PType,RNGType>{
/// - axiom: A sequence of modules that represents the initial state of the Lindenmayer system..
91
91
/// - prng: An optional psuedo-random number generator to use for for randomness in rule productions.
92
92
/// - parameters: An instance of type you provide that the L-system provides to the rules you create for use as parameters.
93
-
publicstaticfunc create<PType:Sendable, RNGType:Sendable>(_ axiom:[Module], with prng:RNGType?, using parameters:PType)->ParameterizedRandomContextualLSystem<PType,RNGType>{
93
+
publicstaticfunc create<PType:Sendable, RNGType:Sendable>(_ axiom:[anyModule], with prng:RNGType?, using parameters:PType)->ParameterizedRandomContextualLSystem<PType,RNGType>{
0 commit comments