Remove use of gl_VertexID

This commit is contained in:
Grant Sanderson
2024-09-28 09:54:28 -05:00
parent 9eda000a97
commit f0bf50eb7f
8 changed files with 2 additions and 23 deletions

View File

@ -1274,7 +1274,7 @@ class VMobject(Mobject):
# Do we want this elsewhere? Say whenever points are refreshed or something?
self.get_joint_angles()
self.data["base_normal"][0::2] = self.data["point"][0]
return [self.data, self.data[-1:]]
return [self.data[self.get_outer_vert_indices()]]
class VGroup(Group, VMobject, Generic[SubVmobjectType]):