Пример #1
0
bool FaceInstance::selected_edge(std::size_t index) const {
	return VertexSelection_find(m_edgeSelection, getFace().getWinding()[index].adjacent) != m_edgeSelection.end();
}
Пример #2
0
bool FaceInstance::selected_vertex (std::size_t index) const
{
	const Winding& winding = m_face->getWinding();
	return VertexSelection_find(m_vertexSelection, winding[index].adjacent) != m_vertexSelection.end();
}