Jump to content

Search the Community

Showing results for tags 'ink particles'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Lounge/General chat
    • Education
    • Jobs
    • Marketplace
  • Houdini
    • General Houdini Questions
    • Effects
    • Modeling
    • Animation & Rigging
    • Lighting & Rendering + Solaris!
    • Compositing
    • Games
    • Tools (HDA's etc.)
  • Coders Corner
    • HDK : Houdini Development Kit
    • Scripting
    • Shaders
  • Art and Challenges
    • Finished Work
    • Work in Progress
    • VFX Challenge
    • Effects Challenge Archive
  • Systems and Other Applications
    • Other 3d Packages
    • Operating Systems
    • Hardware
    • Pipeline
  • od|force
    • Feedback, Suggestions, Bugs

Product Groups

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Skype


Name


Location


Interests

Found 1 result

  1. Hello, I`m working on Ink style effect. I would like to add point in between two (or more) nearest existing points, interpolate velocity and push new point slightly in vel direction, to have little bit more circular interpolation. That works well, better than point jitter or different cheap techniques. I would like to still fell motion from original sim. But I stuck on duplicated positions of some points, which is logical, other points can have similar near point. So I would like to add some counter, so if there were pair in past, don`t create new point. We are talking about millions of new points, so I need it as cheap and straight forward as possible. Basic idea, with some new points duplicated: float maxDistance = chf("maxDistance"); float minDistance = chf("minDistance"); int maxPoints = chi("maxPoints"); int nearPnts[] = nearpoints(0,@P,maxDistance, maxPoints); foreach (int pnts; nearPnts){ float distance = distance(point(0,"P",pnts), @P); if (distance > minDistance){ vector nearPos = point(0,"P", pnts); vector nearVel = point(0,"v", pnts); vector centerPos = lerp(nearPos, @P, 0.5); vector centerVel = lerp(nearVel, @v, 0.5); centerPos += centerVel * chf("pos_offset"); int newPoint = addpoint(0,centerPos); setpointattrib(0,"v",newPoint,centerVel); setpointattrib(0,"id",newPoint,@id*1000); setpointattrib(0,"newBorn",newPoint,1); } } I`m trying to add some counter ("tested") but seems like I cant read this attribute and my head is twisted I can see in spreadsheed, that "tested" has some range, so I need to connect with it. Any idea? Thanks a lot float minDistance = chf("minDistance"); int maxPoints = chi("maxPoints"); i@tested = 0; int nearPnts[] = nearpoints(0,@P,maxDistance, maxPoints); foreach (int pnts; nearPnts){ float distance = distance(point(0,"P",pnts), @P); setpointattrib(0,"tested",pnts,1,"add"); if (distance > minDistance && point(geoself(), "tested", pnts) == 1){ vector nearPos = point(0,"P", pnts); vector nearVel = point(0,"v", pnts); vector centerPos = lerp(nearPos, @P, 0.5); vector centerVel = lerp(nearVel, @v, 0.5); centerPos += centerVel * chf("pos_offset"); int newPoint = addpoint(0,centerPos); setpointattrib(0,"v",newPoint,centerVel); setpointattrib(0,"id",newPoint,@id*1000); setpointattrib(0,"newBorn",newPoint,1); } }
×
×
  • Create New...