Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/io/wavefront_obj/exporter/obj_export_nurbs.hh')
-rw-r--r--source/blender/io/wavefront_obj/exporter/obj_export_nurbs.hh12
1 files changed, 5 insertions, 7 deletions
diff --git a/source/blender/io/wavefront_obj/exporter/obj_export_nurbs.hh b/source/blender/io/wavefront_obj/exporter/obj_export_nurbs.hh
index fe457f3c1c7..0c71c3cc09d 100644
--- a/source/blender/io/wavefront_obj/exporter/obj_export_nurbs.hh
+++ b/source/blender/io/wavefront_obj/exporter/obj_export_nurbs.hh
@@ -47,28 +47,26 @@ class OBJCurve : NonCopyable {
* \param spline_index: Zero-based index of spline of interest.
* \return: Total vertices in a spline.
*/
- int total_spline_vertices(const int spline_index) const;
+ int total_spline_vertices(int spline_index) const;
/**
* Get coordinates of the vertex at the given index on the given spline.
*/
- float3 vertex_coordinates(const int spline_index,
- const int vertex_index,
- const float scaling_factor) const;
+ float3 vertex_coordinates(int spline_index, int vertex_index, float scaling_factor) const;
/**
* Get total control points of the NURBS spline at the given index. This is different than total
* vertices of a spline.
*/
- int total_spline_control_points(const int spline_index) const;
+ int total_spline_control_points(int spline_index) const;
/**
* Get the degree of the NURBS spline at the given index.
*/
- int get_nurbs_degree(const int spline_index) const;
+ int get_nurbs_degree(int spline_index) const;
private:
/**
* Set the final transform after applying axes settings and an Object's world transform.
*/
- void set_world_axes_transform(const eTransformAxisForward forward, const eTransformAxisUp up);
+ void set_world_axes_transform(eTransformAxisForward forward, eTransformAxisUp up);
};
} // namespace blender::io::obj