-
Notifications
You must be signed in to change notification settings - Fork 767
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'wrap/' changes from 0ab10c359..248971868
248971868 Merge pull request #132 from borglab/fix/matlab-wrapper 157fad9e5 fix where generation of wrapper files takes place f2ad4e475 update tests and fixtures 65e230b0d fixes to get the matlab wrapper working git-subtree-dir: wrap git-subtree-split: 24897186873c92a32707ca8718f7e7b7dbffc589
- Loading branch information
1 parent
c195bb5
commit aa693b2
Showing
36 changed files
with
617 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
tests/expected/matlab/+gtsam/GeneralSFMFactorCal3Bundler.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
%class GeneralSFMFactorCal3Bundler, see Doxygen page for details | ||
%at https://gtsam.org/doxygen/ | ||
% | ||
classdef GeneralSFMFactorCal3Bundler < handle | ||
properties | ||
ptr_gtsamGeneralSFMFactorCal3Bundler = 0 | ||
end | ||
methods | ||
function obj = GeneralSFMFactorCal3Bundler(varargin) | ||
if nargin == 2 && isa(varargin{1}, 'uint64') && varargin{1} == uint64(5139824614673773682) | ||
my_ptr = varargin{2}; | ||
special_cases_wrapper(7, my_ptr); | ||
else | ||
error('Arguments do not match any overload of gtsam.GeneralSFMFactorCal3Bundler constructor'); | ||
end | ||
obj.ptr_gtsamGeneralSFMFactorCal3Bundler = my_ptr; | ||
end | ||
|
||
function delete(obj) | ||
special_cases_wrapper(8, obj.ptr_gtsamGeneralSFMFactorCal3Bundler); | ||
end | ||
|
||
function display(obj), obj.print(''); end | ||
%DISPLAY Calls print on the object | ||
function disp(obj), obj.display; end | ||
%DISP Calls print on the object | ||
end | ||
|
||
methods(Static = true) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
%class SfmTrack, see Doxygen page for details | ||
%at https://gtsam.org/doxygen/ | ||
% | ||
classdef SfmTrack < handle | ||
properties | ||
ptr_gtsamSfmTrack = 0 | ||
end | ||
methods | ||
function obj = SfmTrack(varargin) | ||
if nargin == 2 && isa(varargin{1}, 'uint64') && varargin{1} == uint64(5139824614673773682) | ||
my_ptr = varargin{2}; | ||
special_cases_wrapper(3, my_ptr); | ||
else | ||
error('Arguments do not match any overload of gtsam.SfmTrack constructor'); | ||
end | ||
obj.ptr_gtsamSfmTrack = my_ptr; | ||
end | ||
|
||
function delete(obj) | ||
special_cases_wrapper(4, obj.ptr_gtsamSfmTrack); | ||
end | ||
|
||
function display(obj), obj.print(''); end | ||
%DISPLAY Calls print on the object | ||
function disp(obj), obj.display; end | ||
%DISP Calls print on the object | ||
end | ||
|
||
methods(Static = true) | ||
end | ||
end |
Oops, something went wrong.