Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_geometry_set.hh
| Show First 20 Lines • Show All 322 Lines • ▼ Show 20 Lines | public: | ||||
| /* Utility methods for access. */ | /* Utility methods for access. */ | ||||
| bool has_mesh() const; | bool has_mesh() const; | ||||
| bool has_pointcloud() const; | bool has_pointcloud() const; | ||||
| bool has_instances() const; | bool has_instances() const; | ||||
| bool has_volume() const; | bool has_volume() const; | ||||
| bool has_curve() const; | bool has_curve() const; | ||||
| bool has_realized_data() const; | bool has_realized_data() const; | ||||
| bool is_empty() const; | |||||
| const Mesh *get_mesh_for_read() const; | const Mesh *get_mesh_for_read() const; | ||||
| const PointCloud *get_pointcloud_for_read() const; | const PointCloud *get_pointcloud_for_read() const; | ||||
| const Volume *get_volume_for_read() const; | const Volume *get_volume_for_read() const; | ||||
| const CurveEval *get_curve_for_read() const; | const CurveEval *get_curve_for_read() const; | ||||
| Mesh *get_mesh_for_write(); | Mesh *get_mesh_for_write(); | ||||
| PointCloud *get_pointcloud_for_write(); | PointCloud *get_pointcloud_for_write(); | ||||
| ▲ Show 20 Lines • Show All 414 Lines • Show Last 20 Lines | |||||