9551-Dev / C3D

Advanced 3D renderer for the Computercraft minecraft mod
https://c3d.madefor.cc
MIT License
24 stars 1 forks source link

clean up unnecesarry modules #50

Open 9551-Dev opened 1 year ago

9551-Dev commented 1 year ago

modules like vector or palette take up extra space and load time

all these modules do is add a constructor wrapper for an object which is stupid

the better way to go about this is to group stuff into larger modules,

for example turn the palette module to be part of the graphics module, you dont need a module for a single "new" function! you can make this be a part of graphics

for stuff like vectors i propose a new module to be created, a math module. containing useful math related tools to be used