|
Blender
V2.93
|
#include "DNA_mesh_types.h"#include "DNA_meshdata_types.h"#include "BKE_mesh.h"#include "UI_interface.h"#include "UI_resources.h"#include "node_geometry_util.hh"Go to the source code of this file.
Namespaces | |
| blender | |
| blender::nodes | |
Functions | |
| static int | blender::nodes::sphere_vert_total (const int segments, const int rings) |
| static int | blender::nodes::sphere_edge_total (const int segments, const int rings) |
| static int | blender::nodes::sphere_corner_total (const int segments, const int rings) |
| static int | blender::nodes::sphere_face_total (const int segments, const int rings) |
| static void | blender::nodes::calculate_sphere_vertex_data (MutableSpan< MVert > verts, const float radius, const int segments, const int rings) |
| static void | blender::nodes::calculate_sphere_edge_indices (MutableSpan< MEdge > edges, const int segments, const int rings) |
| static void | blender::nodes::calculate_sphere_faces (MutableSpan< MLoop > loops, MutableSpan< MPoly > polys, const int segments, const int rings) |
| static void | blender::nodes::calculate_sphere_uvs (Mesh *mesh, const float segments, const float rings) |
| static Mesh * | blender::nodes::create_uv_sphere_mesh (const float radius, const int segments, const int rings) |
| static void | blender::nodes::geo_node_mesh_primitive_uv_sphere_exec (GeoNodeExecParams params) |
| void | register_node_type_geo_mesh_primitive_uv_sphere () |
Variables | |
| static bNodeSocketTemplate | geo_node_mesh_primitive_uv_sphere_in [] |
| static bNodeSocketTemplate | geo_node_mesh_primitive_uv_sphere_out [] |
| void register_node_type_geo_mesh_primitive_uv_sphere | ( | void | ) |
Definition at line 304 of file node_geo_mesh_primitive_uv_sphere.cc.
References GEO_NODE_MESH_PRIMITIVE_UV_SPHERE, blender::nodes::geo_node_mesh_primitive_uv_sphere_exec(), geo_node_mesh_primitive_uv_sphere_in, geo_node_mesh_primitive_uv_sphere_out, geo_node_type_base(), bNodeType::geometry_node_execute, NODE_CLASS_GEOMETRY, node_type_socket_templates(), and nodeRegisterType().
Referenced by registerGeometryNodes().
|
static |
Definition at line 27 of file node_geo_mesh_primitive_uv_sphere.cc.
Referenced by register_node_type_geo_mesh_primitive_uv_sphere().
|
static |
Definition at line 34 of file node_geo_mesh_primitive_uv_sphere.cc.
Referenced by register_node_type_geo_mesh_primitive_uv_sphere().