/tags/rel-1-3-25/SWIG/Examples/ruby/value/runme.rb
Ruby | 32 lines | 20 code | 8 blank | 4 comment | 0 complexity | 28064284b471256ff270c41e092699ca MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1# file: runme.rb 2 3require 'example' 4 5# Create a couple of a vectors 6 7v = Example::new_Vector(1, 2, 3) 8w = Example::new_Vector(10, 11, 12) 9 10print "I just created the following vectors\n" 11Example::vector_print(v) 12Example::vector_print(w) 13 14# Now call some of our functions 15 16print "\nNow I'm going to compute the dot product\n" 17d = Example::dot_product(v,w) 18print "dot product = #{d} (should be 68)\n" 19 20# Add the vectors together 21 22print "\nNow I'm going to add the vectors together\n" 23r = Example::vector_add(v,w) 24Example::vector_print(r) 25print "The value should be (11, 13, 15)\n" 26 27# Now I'd better clean up the return result r 28 29print "\nNow I'm going to clean up the return result\n" 30Example::free(r) 31 32print "Good\n"