diff --git a/source/blender/blenkernel/BKE_subdiv_ccg.hh b/source/blender/blenkernel/BKE_subdiv_ccg.hh index 85bd6e7f625..9f21a429b6e 100644 --- a/source/blender/blenkernel/BKE_subdiv_ccg.hh +++ b/source/blender/blenkernel/BKE_subdiv_ccg.hh @@ -141,11 +141,18 @@ struct SubdivCCG : blender::NonCopyable { blender::Span grid_to_face_map; /* Edges which are adjacent to faces. + * + * Maps from coarse edge to a directional `grid_size` * 2 map of indices to `SubdivCCGCoord`, + * indexed by OpenSubdiv base mesh edge. + * * Used for faster grid stitching, at the cost of extra memory. */ blender::Array adjacent_edges; - /* Vertices which are adjacent to faces + /* Vertices which are adjacent to faces. + * + * Maps from coarse vertex to `SubdivCCGCoord`, indexed by OpenSubdiv base mesh vertex. + * * Used for faster grid stitching, at the cost of extra memory. */ blender::Array adjacent_verts;