update manpage

felipesanches-svg
don bright 2013-03-03 11:54:34 -06:00
parent bacaa2b1b9
commit 9f5c6133bf
2 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,4 @@
.TH OPENSCAD 1 "2011-11-03"
.TH OPENSCAD 1 "2013-03-xx"
.\" Please adjust this date whenever revising the manpage.
.SH NAME
openscad \- script file based graphical CAD environment
@ -43,6 +43,12 @@ Show version of program.
.TP
.B \-\-render
If exporting an image, use a full CGAL render. (Default is an OpenCSG compile)
.TP
.B \-\-gimbalcam=rotx,roty,rotz,transx,transy,transz,distance
If exporting an image, use a Gimbal camera with the given parameters
.TP
.B \-\-vectorcam=eyex,eyey,eyez,centerx,centery,centerz
If exporting an image, use a Vector camera with the given parameters
.SH AUTHOR
OpenSCAD was written by Clifford Wolf, Marius Kintel, and others.
.PP

View File

@ -103,7 +103,6 @@ Camera determine_camera( po::variables_map vm )
Camera camera;
if (vm.count("gimbalcam")) {
std::cout << "x:" << vm["gimbalcam"].as<string>().c_str() << "\n";
vector<string> strs;
vector<double> cam_parameters;
split(strs, vm["gimbalcam"].as<string>(), is_any_of(","));
@ -117,7 +116,6 @@ Camera determine_camera( po::variables_map vm )
}
if (vm.count("vectorcam")) {
std::cout << "x:" << vm["vectorcam"].as<string>().c_str() << "\n";
vector<string> strs;
vector<double> cam_parameters;
split(strs, vm["vectorcam"].as<string>(), is_any_of(","));