[eigen] Re: conversions in geometry module

[ Thread Index | Date Index | More lists.tuxfamily.org/eigen Archives ]


specifically, he tried to do:
Eigen::Transform3f t = Eigen::Translation3f(1.0f, 2.0f, 0.0f);

and that failed to compile because gcc wanted to use a conversion
constructor here.
Instead with current Eigen he has to do
Eigen::Transform3f t;
t = Eigen::Translation3f(1.0f, 2.0f, 0.0f);

I'd fix it myself but I want to make sure it's not conflicting with
another design aspect...

Cheers,
Benoit

2008/12/6 Benoit Jacob <jacob.benoit.1@xxxxxxxxx>:
> Hi Gael,
>
> today a user on IRC was puzzled because Translation's couldn't be
> casted to Transform's.
>
> Is there any specific reason why the Transform class doesn't have (at
> least explicit) constructors taking Translation?
> Same question for Rotation types, etc?
>
> Any opinion on whether such constructors should be explicit? (Somehow
> if have a rough feeling that they should)
>
> Cheers,
> Benoit
>

---


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/