Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
third-party
moab
Commits
221849e3
Commit
221849e3
authored
Oct 21, 2016
by
Rajeev Jain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
o Fix doxygen documentation params
parent
4f252954
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
8 deletions
+26
-8
itaps/fbigeom/FBiGeom.h
itaps/fbigeom/FBiGeom.h
+26
-8
No files found.
itaps/fbigeom/FBiGeom.h
View file @
221849e3
...
...
@@ -2686,7 +2686,12 @@ extern "C" {
*
* Reflect an entity across the given plane
* \param instance FBiGeom instance handle
* \param geom_entity the entity to reflect, x, y, z coordinate of the point that the reflecting plane goes though
* \param geom_entity the entity to reflect,
* \param point_x x coordinate of the point that the reflecting plane goes though
* \param point_y y coordinate of the point that the reflecting plane goes
though
* \param point_z z coordinate of the point that the reflecting plane goes
though
* \param plane_normal_x x coordinate of the plane's normal
* \param plane_normal_y y coordinate of the plane's normal
* \param plane_normal_z z coordinate of the plane's normal
...
...
@@ -2694,14 +2699,22 @@ extern "C" {
*/
void
FBiGeom_reflectEnt
(
FBiGeom_Instance
instance
,
iBase_EntityHandle
geom_entity
,
double
x
,
double
y
,
double
z
,
double
norm_x
,
double
norm_y
,
double
norm_z
,
int
*
err
);
double
x
,
double
y
,
double
z
,
double
plane_normal_x
,
double
plane_normal_y
,
double
plane_normal_z
,
int
*
err
);
/**\brief Scale an entity in the x, y, and z directions
*
* Scale an entity in the x, y, and z directions.
* \param instance FBiGeom instance handle
* \param geom_entity the entity to scale, x, y, z coordinate of the point that the scale plane goes though
* \param geom_entity the entity to scale,
* \param point_x x coordinate of the scaling center
* \param point_y y coordinate of the scaling center
* \param point_z z coordinate of the scaling center
* \param scale_x factor to scale by in the x direction
* \param scale_y factor to scale by in the y direction
* \param scale_z factor to scale by in the z direction
...
...
@@ -2709,8 +2722,13 @@ extern "C" {
*/
void
FBiGeom_scaleEnt
(
FBiGeom_Instance
instance
,
iBase_EntityHandle
geom_entity
,
double
x
,
double
y
,
double
z
,
double
x_factor
,
double
y_factor
,
double
z_factor
,
int
*
err
);
double
x
,
double
y
,
double
z
,
double
scale_x
,
double
scale_y
,
double
scale_z
,
int
*
err
);
/**\brief Geometrically unite entities
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment