JuliaGeometry / PlyIO.jl

Read and write polygon ply files from julia

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

load_ply error

RodolfoFigueroa opened this issue · comments

load_ply causes an error on Julia 1.0.3. This is due to the replace function syntax on line 206 of types.jl:
headerstr = replace(strip(headerstr), "\n", "\n ")
should instead be:
headerstr = replace(strip(headerstr), "\n"=>"\n ")

Created PR instead