public static V3d UniformV3dFullClosed(this IRandomUniform rnd, Box3d box) { return(box.Lerp(rnd.UniformDoubleFullClosed(), rnd.UniformDoubleFullClosed(), rnd.UniformDoubleFullClosed())); }
public static V3d UniformV3dOpen(this IRandomUniform rnd, Box3d box) { return(box.Lerp(rnd.UniformDoubleOpen(), rnd.UniformDoubleOpen(), rnd.UniformDoubleOpen())); }