本文整理汇总了C++中MapHandlerGen::const_attribute_container方法的典型用法代码示例。如果您正苦于以下问题:C++ MapHandlerGen::const_attribute_container方法的具体用法?C++ MapHandlerGen::const_attribute_container怎么用?C++ MapHandlerGen::const_attribute_container使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MapHandlerGen
的用法示例。
在下文中一共展示了MapHandlerGen::const_attribute_container方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: selected_map_vertex_attribute_added
void Selection_DockTab::selected_map_vertex_attribute_added(const QString& name)
{
updating_ui_ = true;
QString vec3_type_name = QString::fromStdString(cgogn::name_of_type(VEC3()));
MapHandlerGen* map = schnapps_->get_selected_map();
const MapHandlerGen::ChunkArrayContainer<cgogn::numerics::uint32>* container = map->const_attribute_container(Vertex_Cell);
QString attribute_type_name = QString::fromStdString(container->get_chunk_array(name.toStdString())->type_name());
if (attribute_type_name == vec3_type_name)
{
combo_positionAttribute->addItem(name);
combo_normalAttribute->addItem(name);
}
updating_ui_ = false;
}