Thomas Thomassen

Results 163 issues of Thomas Thomassen

This is only 125%: ![stl-highdpi](https://f.cloud.github.com/assets/192418/1267725/e10666a4-2cc9-11e3-8952-fbe1237cd8e8.PNG)

enhancement

Let's clean up the code to make it conform to the Style Guide: https://github.com/styleguide/ruby This includes max 80 characters line width and making variables have verbose names instead of short...

coding style

Right now nearly all the headers are different. Lets clean them up to be uniform.

coding style

We should not assume file operations succeed. See confusion in this thread related to user trying to load file from a path with non-ASCII characters. I also think we should...

bug
enhancement

If a filename is given without an extension ".stl" should be appended. Mismatching extension names should also be corrected.

enhancement

When faces are lost in the cleanup process it would be good to analyse why the face was lost and provide the user with information. Typical cause is small edges.

enhancement

We should set up performance profiles so we can monitor performance as we make changes. See #48 for info on setting up profiles.

enhancement
profiling

I've written a small utility to keep track of the performance of given methods without having to modify the source code or suffer from big performance penalties. It's part of...

info
profiling

Would it be possible to have Go To Definition when over a `require` statement open the file it refers to - if it's a string literal?

Is `nil` not always recognized by steep? ```rb module Example # @return [nil] def self.hello end # @return [Array] def self.world end end ``` ```rb [INFER] Assuming from filename you...