In tofu/geom/_comp.py in the function _Ves_get_sampleS four parameters are taken and never used: Min1, Max1, Min2, Max2. They are transformed to two list, see:
|
MinMax1 = np.array([Min1,Max1]) |
|
MinMax2 = np.array([Min2,Max2]) |
But, when calling core function for sampling they are never used. Since there is no doc, not sure what are this parameters ? Are they the limits for Phi ?
In
tofu/geom/_comp.pyin the function_Ves_get_sampleSfour parameters are taken and never used:Min1, Max1, Min2, Max2. They are transformed to two list, see:tofu/tofu/geom/_comp.py
Lines 287 to 288 in a5c8cf8
But, when calling core function for sampling they are never used. Since there is no doc, not sure what are this parameters ? Are they the limits for
Phi?