Home Examples Installation Documentation Contact Help

make

Specification

Location Author Maintained by
isl/math/vector3.py Kenny Erleben DIKU

Purpose & Params

:param 1: Any number  
:param 2: Any number 
:param 3: Any number
:return: numpy array of numpy type float64  

Example

    test_vec_1 = vec3.make(1,2,3)
    print(test_vec_1)

output:

    [1.,2.,3.]