Hi,

I am new at this - but have decided that Julia is my language of choice. So 
I begin silly question stage: 

Could someone talk me through how to access and display an .obj file? 

I have gotten so far:

using Meshes
using PyPlot
using FileIO
using MeshIO

obj = load(filename)
vts = obj.vertices 


Which gives me: 

502-element Array{FixedSizeArrays.Point{3,Float32},1}:



One example point being: 

Point(0.00117,-0.02631,0.03907)    

                                                                               

  

How do I access the verticies to use them with plot? 

-A


Reply via email to