Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/geometry_component_instances.cc
| Show All 25 Lines | |||||
| #include "DNA_collection_types.h" | #include "DNA_collection_types.h" | ||||
| #include "BKE_geometry_set.hh" | #include "BKE_geometry_set.hh" | ||||
| #include "BKE_geometry_set_instances.hh" | #include "BKE_geometry_set_instances.hh" | ||||
| #include "attribute_access_intern.hh" | #include "attribute_access_intern.hh" | ||||
| #include "FN_cpp_type_make.hh" | |||||
| using blender::float4x4; | using blender::float4x4; | ||||
| using blender::Map; | using blender::Map; | ||||
| using blender::MutableSpan; | using blender::MutableSpan; | ||||
| using blender::Set; | using blender::Set; | ||||
| using blender::Span; | using blender::Span; | ||||
| using blender::VectorSet; | using blender::VectorSet; | ||||
| using blender::fn::GSpan; | using blender::fn::GSpan; | ||||
| MAKE_CPP_TYPE(InstanceReference, InstanceReference, CPPTypeFlags::None) | |||||
| /* -------------------------------------------------------------------- */ | /* -------------------------------------------------------------------- */ | ||||
| /** \name Geometry Component Implementation | /** \name Geometry Component Implementation | ||||
| * \{ */ | * \{ */ | ||||
| InstancesComponent::InstancesComponent() : GeometryComponent(GEO_COMPONENT_TYPE_INSTANCES) | InstancesComponent::InstancesComponent() : GeometryComponent(GEO_COMPONENT_TYPE_INSTANCES) | ||||
| { | { | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 402 Lines • Show Last 20 Lines | |||||