update matrix of Shapes recipe

This commit is contained in:
Thomas Breloff 2016-07-07 09:36:03 -04:00
parent 0cc1bd2dc6
commit 2e24da3dcd

View File

@ -242,13 +242,10 @@ end
end end
@recipe function f(shapes::AMat{Shape}) @recipe function f(shapes::AMat{Shape})
seriestype := :shape
for j in 1:size(shapes,2) for j in 1:size(shapes,2)
# create one series for each column @series shape_coords(vec(shapes[:,j]))
# @series shape_coords(vec(shapes[:,j]))
di = copy(d)
push!(series_list, RecipeData(di, shape_coords(vec(shapes[:,j]))))
end end
nothing # don't create a series for the main block
end end
# #