24 lines
821 B
C++
24 lines
821 B
C++
/* ----------------------------------------------------------------------------
|
|
|
|
* GTSAM Copyright 2010, Georgia Tech Research Corporation,
|
|
* Atlanta, Georgia 30332-0415
|
|
* All Rights Reserved
|
|
* Authors: Frank Dellaert, et al. (see THANKS for the full author list)
|
|
|
|
* See LICENSE for the license information
|
|
|
|
* -------------------------------------------------------------------------- */
|
|
|
|
// automatically generated by wrap on 2010-Feb-23
|
|
#include <wrap/matlab.h>
|
|
#include <Point3.h>
|
|
void mexFunction(int nargout, mxArray *out[], int nargin, const mxArray *in[])
|
|
{
|
|
checkArguments("new_Point3_ddd",nargout,nargin,3);
|
|
double x = unwrap< double >(in[0]);
|
|
double y = unwrap< double >(in[1]);
|
|
double z = unwrap< double >(in[2]);
|
|
Point3* self = new Point3(x,y,z);
|
|
out[0] = wrap_constructed(self,"Point3");
|
|
}
|