[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Quaternions
- From: "Gael Guennebaud" <gael.guennebaud@xxxxxxxxx>
- Date: Sat, 25 Oct 2008 11:27:04 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=EF7A9wKELS5hdEzO0A/WaIfB6JxwHdJ4ql9DK8RrwLU=; b=Qz4c3+2qegEpEFafO8VotOgscIAKFKJ7ofroRbMLADQKqW3c4VY7fcIVeTm/LSNnFE qDHsyC5WkNoSHVBJFDe4Fm8WCImS1/iOHK+EvVjLT45lX7MPe4u0t1ngNzdC6czNdxMx dgQSR4Vy1rvoon0e4tUTOPHGu0t9oQGXU7FnU=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=Krao4A+FB2mI4Yovyfa+xNbN0oZ1vmxeBORS5z3hRaoFdG4lOGYygYBExTxS5Oha/I Jp/hnJvMg2bc+5e+tzav3D5xyvyWtMvKEdN3PqJesO5EKk9lg50Xkmb/c1S6M+uUPt+v ukjRHs/DSjfkb/pY96GFOtJgs/POATXvPZ3Vs=
Hi,
thanks a lot for the report, bug fixed in rev 875697.
and yes there is no bugtracker, so this ML is the right place to report bugs.
gael.
On Sat, Oct 25, 2008 at 10:40 AM, Daniel Stonier <d.stonier@xxxxxxxxx> wrote:
> Hi all,
>
> Is there a bug tracker for eigen? I couldn't find anything, so am
> sending here for the moment, but please let me know if there's an
> alternative spot for notifying the developers of bugs.
>
> Quaternions.h -> line 171.
>
> inline Quaternion normalized() const { Quaternion(m_coeffs.normalized()); }
>
> should be
>
> inline Quaternion normalized() const { return
> Quaternion(m_coeffs.normalized()); }
>
> By the way, first post, so I thought I'd better say - nice library!
> Have tried a few, but all were hobbled or incomplete in some way -
> this one's very clever.
>
> Regards,
> Daniel Stonier.
>
> ---
>
>
---