This file is indexed.

/usr/include/SurgSim/DataStructures/SegmentMesh.h is in libopensurgsim-dev 0.7.0-6ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// This file is a part of the OpenSurgSim project.
// Copyright 2013, SimQuest Solutions Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef SURGSIM_DATASTRUCTURES_SEGMENTMESH_H
#define SURGSIM_DATASTRUCTURES_SEGMENTMESH_H

#include "SurgSim/DataStructures/SegmentEmptyData.h"
#include "SurgSim/DataStructures/TriangleMesh.h"

namespace SurgSim
{
namespace DataStructures
{

/// Class to hold the type of a SegmentMesh.
///
/// \tparam	VertexData	Type of extra data stored in each vertex
/// \tparam	EdgeData	Type of extra data stored in each edge
/// \sa TriangleMesh
template <class VertexData, class EdgeData>
class SegmentMesh : public TriangleMesh<VertexData, EdgeData, SegmentEmptyData>
{
public:
	/// TriangleMesh type for convenience
	typedef TriangleMesh<VertexData, EdgeData, SegmentEmptyData> TriangleMeshType;
	/// Edge type for convenience  (Ids of the 2 vertices)
	typedef typename TriangleMeshType::EdgeType EdgeType;
	/// Triangle type for convenience  (Ids of the 3 vertices)
	typedef typename TriangleMeshType::TriangleType TriangleType;

	/// Constructor. The mesh is initially empty (no vertices, no edges).
	SegmentMesh();

	/// Copy constructor when the template data is the same type
	/// \param other the mesh to copy from
	SegmentMesh(const SegmentMesh<VertexData, EdgeData>& other);

	/// Copy constructor when the template data is a different type
	/// \tparam	V Type of extra data stored in each vertex
	/// \tparam	E Type of extra data stored in each edge
	/// \param other The mesh to be copied from. Vertex and edge data will not be copied
	/// \note: Data of the input mesh, i.e. VertexDataSource, EdgeDataSource will not be copied.
	template <class V, class E>
	explicit SegmentMesh(const SegmentMesh<V, E>& other);

	/// Destructor
	virtual ~SegmentMesh();

	/// Move Constructor
	/// \param other Constructor source
	SegmentMesh(SegmentMesh&& other);

	/// Copy Assignment
	/// \param other Assignment source
	SegmentMesh<VertexData, EdgeData>& operator=(
		const SegmentMesh<VertexData, EdgeData>& other);

	/// Move Assignment
	/// \param other Assignment source
	SegmentMesh<VertexData, EdgeData>& operator=(
		SegmentMesh<VertexData, EdgeData>&& other);

	/// Creates edges for all vertices in the mesh connecting all the points consecutively
	/// \note This will clear all the current edges
	void createDefaultEdges();

	/// Save the current structure to a ply file
	/// \param fileName Name of the file for writing
	/// \param asPhysics Format the file to be used as a physics file, otherwise the file will be ply format
	/// with 'edge' as the edge element
	/// \param radius if asPhysics is true, this will be used as the radius for the ply file
	/// \param massDensity if asPhysics is true, this will be used as the massDensity for the ply file
	/// \param poissonRatio if asPhysics is true, this will be used as the poissonRatio for the ply file
	/// \param youngsModulus if asPhysics is true, this will be used as the youngsModulus for the ply file
	/// \return true if the file was written successfully
	bool save(const std::string& fileName,
			  bool asPhysics = true,
			  double radius = 0.0001,
			  double massDensity = 900,
			  double poissonRatio = 0.45,
			  double youngsModulus = 1.75e9);

	using TriangleMesh<VertexData, EdgeData, SegmentEmptyData>::addEdge;
	using TriangleMesh<VertexData, EdgeData, SegmentEmptyData>::doClearEdges;
	using TriangleMesh<VertexData, EdgeData, SegmentEmptyData>::getNumEdges;
	using TriangleMesh<VertexData, EdgeData, SegmentEmptyData>::getNumVertices;
	using TriangleMesh<VertexData, EdgeData, SegmentEmptyData>::getEdges;
	using TriangleMesh<VertexData, EdgeData, SegmentEmptyData>::getVertices;

	///@{
	/// Functions that need to assert, because they deal with triangles.
	size_t addTriangle(const TriangleType& triangle);
	size_t getNumTriangles() const;
	const std::vector<TriangleType>& getTriangles() const;
	std::vector<TriangleType>& getTriangles();
	const TriangleType& getTriangle(size_t id) const;
	TriangleType& getTriangle(size_t id);
	void removeTriangle(size_t id);
	std::array<SurgSim::Math::Vector3d, 3> getTrianglePositions(size_t id) const;
	void doClearTriangles() override;
	///@}

private:
	/// Clear mesh to return to an empty state (no vertices, no edges).
	void doClear() override;
};

typedef SegmentMesh<EmptyData, EmptyData> SegmentMeshPlain;

}  // namespace DataStructures
}  // namespace SurgSim

#include "SurgSim/DataStructures/SegmentMesh-inl.h"

#endif  // SURGSIM_DATASTRUCTURES_SEGMENTMESH_H