[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: [eigen] Quaternions
- From: "Daniel Stonier" <d.stonier@xxxxxxxxx>
- Date: Sat, 25 Oct 2008 17:40:58 +0900
- 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:mime-version:content-type:content-transfer-encoding :content-disposition; bh=cLGLVxaEBYjm8d2VVsaxEGckYA1Sz1AkQw+GV9L8Rmg=; b=cPkh4dCQQQpMvFpH1Oj6CAAR7TxkYXyJ7uTmQ4Z7M4YlSkme+akr0kDLUW54QeNKaw h9ENWJyDdy8cJAvdj85WqZ44/g4M0nBgmIjfjgTSKoQLSBET1E7WmvA6VUcPTl4K7YnS 7C44sZhoQkjW9q1to0D+OcRZC0hBKB6EFQ+V4=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=FVcqiqprEthg5b2j5A9+dbzrTIcMBqGblmcYANPf+2r1swvA62aAPY+2rQTZAFcaQG WMgx6/aCqXMBkQFgRCXPttQwlklgOoN3gs2y1u2TBKUpMl5Au3rFwItRrpztE4wpRP2o Jev0KcOA21ZXDqVxP/lHlQuGc5lWLGcyZRTOA=
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.
---