• 0 Posts
  • 33 Comments
Joined 1 year ago
cake
Cake day: July 3rd, 2023

help-circle




  • Doesn’t the “missed step detection” on the Prusa printers already achieve a lot of that? I think it monitors the current to the motor and flags any abnormal behavior, without needing extra hardware on the motor.

    That’s not to knock the value of positional feedback, which is clearly superior, but just to say that I don’t think this idea has been entirely neglected.



  • You know that the other two words also exist though, right? Like, you can effect change in an organization, and there can be something strange in the affect of a psychopath. So there’s a verb “to effect” and a noun “affect” (although here the pronunciation is different–the accent is on the first syllable). It’s true that the most common usages follow the rules you’re laying out, but it genuinely is an oversimplification.










  • Could still be temperature if the thermistors on e printers read differently–that is, the same setting doesn’t necessarily work out to the same physical temperature on two printers, even if they’re the same model, because the thermistors vary. My suspicion would be that you’re printing a little hot, and the filament is contracting after it’s extruded. On the first few layers it can’t shrink much because of all the material in the middle, but on the vase mode layers there’s nothing preventing it.

    Another possibility is that your overlap percentage between your infill and perimeters is too high. This leads to something that basically is overextrusion, but it’s usually visible as more of a ripple.

    A third possibility is that it’s just the filament.



  • And when you say “laser or printer” here, are you referring to a 2d printer, or a 3d printer?

    The questions are because, fundamentally, a wireframe image like the one you linked is just a different way of rendering the same file. So if what you want is literally an image like this, then there are tools to do that, which will depend a bit on what operating system you’re using. Blender, as mentioned in another comment, is one such option.

    If, on the other hand, what you want is a 3d printable structure that resembles a wireframe rendering of the object, that’s a more complicated task. The STL file just lists the triangles that make up the surface of the object; in order to make a solid structure that resembles this, you’d need to create a solid (e.g. a cylinder, maybe with balls at the ends) for every edge in the file (3n / 2 edges for n triangles, since every edge in a properly printable [“manifold”] STL is shared by two triangles) and then takes a boolean union of all of them. I don’t think a tool to do this exists currently, as it’s a rather specialized need, but it wouldn’t be too hard to throw together a python script that could take an STL file and generate an OpenSCAD script that you could then render with OpenSCAD to get the STL.