Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/vecrep.jl
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,11 @@ function vrep(points::PointIt, lines::LineIt, rays::RayIt;
return Hull(d, points, lines, rays)
end

function vrep(points::ElemIt{AT}, rays::ElemIt{Ray{T, AT}};
kws...) where {T, AT}
return vrep(points, Line{T, AT}[], rays; kws...)
end

function vrep(points::ElemIt{AT}, lines::ElemIt{Line{T, AT}};
kws...) where {T, AT}
return vrep(points, lines, Ray{T, AT}[]; kws...)
Expand Down