Giter VIP home page Giter VIP logo

Comments (1)

jsanmiya avatar jsanmiya commented on May 23, 2024

When you create a b2ParticleGroup using b2ParticleGroupDef, the velocities
are set with the 'linearVelocity and angularVelocity parameters. Please
see the code below.

int32 b2ParticleSystem::CreateParticleForGroup(
const b2ParticleGroupDef& groupDef, const b2Transform& xf, const b2Vec2&
p)
{
b2ParticleDef particleDef;
particleDef.flags = groupDef.flags;
particleDef.position = b2Mul(xf, p);

  • particleDef.velocity =*
  • groupDef.linearVelocity +*
  • b2Cross(groupDef.angularVelocity,*
  •    particleDef.position - groupDef.position);*
    
    particleDef.color = groupDef.color;
    particleDef.lifetime = groupDef.lifetime;
    particleDef.userData = groupDef.userData;
    return CreateParticle(particleDef);
    }

But your request seems reasonable. Maybe we can add an (optional)
const b2Vec2* velocityData
to b2ParticleGroupDef. If velocityData is not NULL, we can use
velocityData[i] instead of linearVelocity and angularVelocity.

I'd be interested in getting a pull request for this. It seems like a good
idea.

Thanks!
Jason

from liquidfun.

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.