Hello.
> >> [...]
> >>
> >> public interface ConvexHull {
> >> Vector[] generate(Vector[] points);
> >> }
> >
> > I think that you should use "List" instead of arrays (even "Iterable"
> > whenever possible); it will be plainly more flexible. Just a little
> > thought...
>
> I have now severa
On 10/10/2012 12:04 AM, Gilles Sadowski wrote:
> Hi.
>
>> [...]
>>
>> public interface ConvexHull {
>> Vector[] generate(Vector[] points);
>> }
>
> I think that you should use "List" instead of arrays (even "Iterable"
> whenever possible); it will be plainly more flexible. Just a little
> tho
Hello.
>
> >>> I started to work on the proposed new features, namely convex hull and
> >>> voronoi diagrams but am a bit stuck with the API design.
> >>>
> >>> The current type structure in the geometry package introduced a so
> >>> called Space with different implementation for 1D, 2D and 3D. T
On 10/10/2012 02:09 PM, Gilles Sadowski wrote:
> Hello.
>
Hi Luc, Gilles,
>>> I started to work on the proposed new features, namely convex hull and
>>> voronoi diagrams but am a bit stuck with the API design.
>>>
>>> The current type structure in the geometry package introduced a so
>>> called S
Hello.
> >
> > I started to work on the proposed new features, namely convex hull and
> > voronoi diagrams but am a bit stuck with the API design.
> >
> > The current type structure in the geometry package introduced a so
> > called Space with different implementation for 1D, 2D and 3D. To
> > r
Hi.
> [...]
>
> public interface ConvexHull {
> Vector[] generate(Vector[] points);
> }
I think that you should use "List" instead of arrays (even "Iterable"
whenever possible); it will be plainly more flexible. Just a little
thought...
Regards,
Gilles
> [...]
Le 09/10/2012 20:21, Thomas Neidhart a écrit :
> Hi,
Hi Thomas,
>
> I started to work on the proposed new features, namely convex hull and
> voronoi diagrams but am a bit stuck with the API design.
>
> The current type structure in the geometry package introduced a so
> called Space with differ
Hi,
I started to work on the proposed new features, namely convex hull and
voronoi diagrams but am a bit stuck with the API design.
The current type structure in the geometry package introduced a so
called Space with different implementation for 1D, 2D and 3D. To
represent a Vector in the respect