Git Product home page Git Product logo

Comments (3)

LingDong- avatar LingDong- commented on June 20, 2024

Hi @stephanschulz

I think a better alternative to culling is to use PEmbroiderBooleanGraphics. Culling is done after the whole design is baked into polylines, so it has to make guesses and compromises. It always look nicer if the correct shape is prepared in the first place (with PEmbroiderBooleanGraphics)

See:

#54

#62

from pembroider.

stephanschulz avatar stephanschulz commented on June 20, 2024

Thanks for the advice.
I am not sure if the library is able to accept PShape objects?
Right now I am constructing my arrow shape from a bunch of vertices.
In this specific case I could combine a triangle and a rectangle, but it would not work for more complicated shapes I guess.

PShape testShape;
BSG.testShape;

Syntax error, insert "VariableDeclarators" to complete LocalVariableDeclaration

from pembroider.

LingDong- avatar LingDong- commented on June 20, 2024

HI @stephanschulz ,

Basically PEmbroiderBooleanGraphics is just a wrapper on PGraphics that's more specialized on binary images. It works exactly like regular PGraphics, and the syntax is also exactly the same, so to draw a PShape on it:

PShape testShape;
testShape.disableStyle();
BSG.fill(255);
BSG.image(testShape,0,0);

The idea is to just construct a binary image where white part should be stitched and black part is void. Then feed it to PEmbroider's image() function.

from pembroider.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.