Thread with 1 post
jump to expanded posttired:
fn normalise(v: Vector<N>) -> Vector<N>
fn magnitude(v: Vector<N>) -> f32
wired:
fn normalise(v: Vector<N>) -> (f32, Vector<N>)
tired:
fn normalise(v: Vector<N>) -> Vector<N>
fn magnitude(v: Vector<N>) -> f32
wired:
fn normalise(v: Vector<N>) -> (f32, Vector<N>)