~jfpacker/pyeigen/bugfixes-0.1

« back to all changes in this revision

Viewing changes to source/vector/rowvector4f.h

  • Committer: Jussi Lepistö
  • Date: 2010-03-21 22:43:37 UTC
  • Revision ID: jussi.lepisto@iki.fi-20100321224337-oahotm631wkye0f6
- ==, != operators
- You can now give either none or all arguments to constructors, and set() only accepts all arguments
- Vector2f fixes (code review for other classes to be done)
- Vector transpose
- Basic unit tests for all classes

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
PyObject* RowVector4f_get_norm(RowVector4f* self, void* closure);
37
37
PyObject* RowVector4f_get_norm_sq(RowVector4f* self, void* closure);
38
38
PyObject* RowVector4f_get_normalized(RowVector4f* self, void* closure);
 
39
PyObject* RowVector4f_get_transpose(RowVector4f* self, void* closure);
39
40
 
40
41
// Methods
41
42
PyObject* RowVector4f_zero(PyTypeObject* cls, PyObject* args);
80
81
 
81
82
// Special methods
82
83
PyObject* RowVector4f_repr(RowVector4f* self);
 
84
PyObject* RowVector4f_richcompare(PyObject* a, PyObject* b, int op);
83
85
 
84
86
#endif