Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Body out of 2 svg parts not displayed correctly? #1127

Open
m42444 opened this issue May 6, 2022 · 9 comments
Open

Body out of 2 svg parts not displayed correctly? #1127

m42444 opened this issue May 6, 2022 · 9 comments
Labels

Comments

@m42444
Copy link

m42444 commented May 6, 2022

I tried to create a body out of two svg parts. svgOne is the green one and svgTwo is the small red "H". But as soon as they are displayed as one body, the svgs are not looking correctly. Whats wrong here?

Appreciate any help, thanks in advance!

This is my code:

const vertexSets = [],

  $('#svgOne').find('path').each(function(i, path){

    var svgOne = Bodies.fromVertices(percentX(80), percentY(30), Matter.Vertices.scale(Svg.pathToVertices(path, 10), (window.innerWidth / 2000), (window.innerWidth / 2000)), {
      render: {
        fillStyle: '#009245',
        strokeStyle: '#009245',
        lineWidth: 1
      }
    }, true);

  vertexSets.push(svgOne);

  });

  $('#svgTwo').find('path').each(function(i, path){

    var svgTwo = Bodies.fromVertices(percentX(80), percentY(30), Matter.Vertices.scale(Svg.pathToVertices(path, 10), (window.innerWidth / 2000), (window.innerWidth / 2000)), {
      render: {
        fillStyle:  '#F9420B',
        strokeStyle:  '#F9420B',
        lineWidth: 1
      }
    }, true);

  vertexSets.push(svgTwo);

  });

  const compoundSVG = Matter.Body.create({
    parts: vertexSets
})

World.add(engine.world, [compoundSVG])

  Matter.Runner.run(engine);

  Render.run(render);
@m42444 m42444 changed the title Is it possible to create a body out of multiple svg parts? Body out of 2 svg parts not displayed correctly? May 6, 2022
@m42444
Copy link
Author

m42444 commented May 6, 2022

SVGs:
Screenshot 2022-05-06 at 11 19 13

Result:
Screenshot 2022-05-06 at 11 17 02

@liabru
Copy link
Owner

liabru commented May 7, 2022

Looks like you need to set up poly-decomp library as these will need to be decomposed, see docs for Bodies.fromVertices for info on that (check the examples too).

@liabru liabru added the question label May 7, 2022
@m42444
Copy link
Author

m42444 commented May 7, 2022

Thanks @liabru, but I have the decomp.js library referenced in my html file. Is there anything else to do? The svg files are displayed correctly when I render them separated (image 1)..

Thank you in advance!

@liabru
Copy link
Owner

liabru commented May 8, 2022

I think what you should do is use a single Bodies.fromVertices(x, y, vertexSets...) at the end and instead pass each part as an element of vertexSets, since Body.create doesn't do any decomposition (it expects convex vertices already).

@m42444
Copy link
Author

m42444 commented May 9, 2022

Thanks @liabru, sounds logical!
You mean like this?:

var svgOptions = {
  parts: vertexSets
}

Matter.Bodies.fromVertices(percentX(80), percentY(30), svgOne, svgTwo, [svgOptions])

I tried this but getting an error. Could you maybe give me some more details, sorry I'm beginner to matter.js..

Thank you in advance!

@m42444
Copy link
Author

m42444 commented May 16, 2022

Hey @liabru, still need a bit of help as I tried the last days but did not figure it out.. would you mind to give me some more details, please?
Thanks so much in advance! :)

@liabru
Copy link
Owner

liabru commented May 19, 2022

I think it might be that since vertexSets is an array it would be more like [svgOne, svgTwo]?

@m42444
Copy link
Author

m42444 commented May 24, 2022

Thanks, but still not working.. :/

@m42444
Copy link
Author

m42444 commented Jun 2, 2022

Hey @liabru, an alternative for me would be a sprite on a svg. But this ist not possible, right?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants