You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The project is a little over a year old now and the code bloat is apparent.
Need to go through each function with a fine toothed comb and see what can be made leaner, or even just removed entirely. Also there are a number of bad habits that should be corrected, such as
remove always using where {T} unless actually needed
anonymous lambda functions are difficult to debug, give them names
function names and extraction API, e.g. getgeodesicpoint vs just process, as that is what it's really doing.
The project is a little over a year old now and the code bloat is apparent.
Need to go through each function with a fine toothed comb and see what can be made leaner, or even just removed entirely. Also there are a number of bad habits that should be corrected, such as
where {T}
unless actually neededgetgeodesicpoint
vs justprocess
, as that is what it's really doing.Also worth looking into
before getting too carried away with more features.
The text was updated successfully, but these errors were encountered: