Home Examples Installation Documentation Contact Help

greather

Specification

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

Purpose & Params

A greather function for 3d vectors.Testing if a

:param 1 name: Is a flat ```numpy``` array of size 3
:param 2 name: Is a flat ```numpy``` array of size 3
:return: boolean  

Example

    test_vec_1 = vec3.make(0,0,0)
    test_vec_2 = vec3.make(1,2,3)
    vec3.greather(test_vec_2, test_vec_1)

output:

    true