Comment on Show HN: I made a 3D SVG Renderer that projects textures without rasterizationparentComments−badmintonbaseba1yHow do you transform paths? Do you just transform the control points?−m-a-t-t-i1yYeah, paths are saved in an array where each path segment is a list of control points coupled with the corresponding path command (M, L, C). Those can be used to recreate the path item.
Comments
How do you transform paths? Do you just transform the control points?
Yeah, paths are saved in an array where each path segment is a list of control points coupled with the corresponding path command (M, L, C). Those can be used to recreate the path item.