Forgot your password?   Click here   •   No account yet?   Please Register    •   Or login using  
EN Login
SideFX Homepage
  • Products
    • What's New in H20.5
      • Overview
      • VFX
      • Copernicus
      • Animation
      • Rigging
      • Lookdev
    • Houdini
      • Overview
      • FX Features
      • CORE Features
      • Solaris
      • PDG
    • Houdini Engine
      • Overview
      • Engine Plug-Ins
      • Batch
    • Karma Renderer
    • Compare
    • SideFX Labs
    • Partners
  • Industries
    • Film & TV
    • Game Development
    • Motion Graphics
    • Virtual Reality
    • Synthetic Data for AI/ML
  • Community
    • Forum
    • News Feed
      • Overview
      • Project Profiles
      • Houdini HIVE Events
      • Contests & Jams
    • Gallery
    • Event Calendar
    • User Groups
    • Artist Directory
  • Learn
    • Tutorials
      • Overview
      • My Learning
      • Learning Paths
      • Tutorial Library
    • Content Library
    • Tech Demos
    • Talks & Webinars
    • Education Programs
      • Overview
      • Students
      • Instructors
      • Administrators
      • List of Schools
      • Resources
  • Support
    • Customer Support
    • Licensing
      • Overview
      • Commercial
      • Indie
      • Education
    • Help Desk | FAQ
    • System Requirements
    • Documentation
    • Changelog / Journal
    • Report a Bug/RFE
  • Try | Buy
    • Try
    • Buy
    • Download
    • Contact Info
 
Advanced Search
Forums Search
Found 27 posts.

Search results Show results as topic list.

Technical Discussion » Gradient Descent

User Avatar
negow
27 posts
Offline
 April 5, 2020 10:41:27
I ported the example to VEX, thought it might be helpful even though the thread is a few years now.

int numiterations = chi("number_of_iterations");
float gravity = chf("gravity");
float max_search_distance = chf("max_search_distance");

vector last_position = @P;
for (int _i=0; _i < numiterations; _i++) {
    
    // Move with gravity
    //        |
    //        |
    //        v
    vector new_position = last_position + set(0, -gravity, 0);
    
    // Resolve collision
    //
    //    _____|
    //   /     |
    //  /      |\
    // /       v -->
    //            \____
    //
    last_position = minpos(1, "", new_position, max_search_distance);

    int ptnum = addpoint(0, last_position);
    setpointattrib(0, "id", ptnum, @ptnum);
}
See full post 

Technical Discussion » Feed Maya shape node with geo from Houdini

User Avatar
negow
27 posts
Offline
 May 15, 2010 05:36:29
That look absolutely marvelous, SYmek. Will to some reading up on it.
See full post 

Technical Discussion » Feed Maya shape node with geo from Houdini

User Avatar
negow
27 posts
Offline
 May 14, 2010 18:32:33
Did some checking up on COM as well which looks interesting.

Please forgive my poor programming knowledge but, to use COM, one would essentially need to write plug-ins for both Houdini and Maya, right?
See full post 

Technical Discussion » Feed Maya shape node with geo from Houdini

User Avatar
negow
27 posts
Offline
 May 14, 2010 17:59:34
) Well, I figured it might not work. And yes, a file on disk might do the trick..

I assume channels and other simpler means of communication would be out of the question aswell then?

I've got this rig running in maya with animation only, and one in houdini that runs by the same animation and weilds some hou magic. For the animators to preview their final meshes, my current solution is to bake the rig (controls, joints) to disk, import this in houdini and have it perform the same animation along with some magic and do the flipbooking in there.

This gets very cumbersom for my lovely but fairly untechnical animators )

You get what I'm after though right?
See full post 

Technical Discussion » Feed Maya shape node with geo from Houdini

User Avatar
negow
27 posts
Offline
 May 14, 2010 12:57:30
Oh no, you misunderstood. File formats isn't a question as I'm not looking to write anything out, the “write to disk/memory” was simply an analogy.

I'm looking for a direct connect between hou and maya. Like between Houdini and the graphics card. But instead of communicating with that, it communicates with Maya (or any other app, since this is in no way specific to maya) which in turn communicates with the graphics card like usual.

An outlet of vertex information from houdini, that would make Houdini look like a shapenode in Maya's hypergraph. Like any other of Maya's shape nodes.

Thanks though )
See full post 

Technical Discussion » Feed Maya shape node with geo from Houdini

User Avatar
negow
27 posts
Offline
 May 14, 2010 07:49:46
Is this an odd request?

I'm basically asking for the same connectivity between Maya and Houdini, as though Houdini were a plugin for Maya.. If one could write geo to disk, I'd imaging you could write it to memory, and from there maya could read from memory as if it were from disk. Only a bit faster.
See full post 

Technical Discussion » Feed Maya shape node with geo from Houdini

User Avatar
negow
27 posts
Offline
 May 11, 2010 15:39:39
Just wanted a general check up on this.

I'd like to have my maya shape node get vertex information along with uv's from an output node in Houdini.

Like, box -> polyextrude -> null(Output) >>> polyCube1Shape.

Via python or perhaps c++?

Ultimately I'd like to run an animated geo from maya through houdini, and back again for playblast in maya without the user knowing what's happening under the hood.
See full post 

Technical Discussion » Deforming eye a la pixar?

User Avatar
negow
27 posts
Offline
 May 11, 2010 05:52:48
in maya, I'd deform the eye with a lattice, and hook that up *-1 to the iris, giving it the opposite deformation, thus cancelling it out.
See full post 

Technical Discussion » Getting the angle between two 3d vectors in VOP

User Avatar
negow
27 posts
Offline
 Dec. 21, 2009 17:16:08
Great advice guys, and thanks for the explanation SyMek!
Guess I'll go through those dvd's, once and for all )
See full post 

Technical Discussion » Getting the angle between two 3d vectors in VOP

User Avatar
negow
27 posts
Offline
 Dec. 21, 2009 15:25:46
Awesome, Thanks!

Would you mind explaining, for someone who missed that class, how the Arc Cosine works to output the inbetween angle in this scenario?
See full post 

Technical Discussion » Getting the angle between two 3d vectors in VOP

User Avatar
negow
27 posts
Offline
 Dec. 21, 2009 15:09:08
What is that in VOP speak? Can I use expressions with vop?
See full post 

Technical Discussion » Getting the angle between two 3d vectors in VOP

User Avatar
negow
27 posts
Offline
 Dec. 21, 2009 14:48:11
Sorry for the basic math question, but I'm trying to replicate the functionality of Softimage's “Get Angle Between”, which takes two normals and outputs the inbetween angle, and I'm blanking. I'm using VOP.

I'm guessing it's not as simple as just subtracting the two?
Edited by - Dec. 21, 2009 15:18:43
See full post 

Houdini Indie and Apprentice » Personal projects in Apprentice

User Avatar
negow
27 posts
Offline
 Nov. 17, 2009 12:54:51
Yeah, was looking at the support section, it says something like “if your a paying customer, mail here, otherwise, post on the forum”. I found a apprentice@sidefx though, sent a mail to that.
See full post 

Houdini Indie and Apprentice » Personal projects in Apprentice

User Avatar
negow
27 posts
Offline
 Nov. 17, 2009 10:57:43
Would just like to check my options.

I'm producing a shortfilm with a commercial license of maya and the non-commercial version of houdini. Strictly personal, but will probably attend a few festivals here and there and before I go too deep, I just want to make sure I wouldn't be in violation of anything when doing this.

Selling the film would, right? How about producing it in apprentice, then buying a Master license and sell it?

While I'm at it, does the HD license allow for using ROP for simulation data and various other formats (to communicate with maya etc.)?
See full post 

Houdini Lounge » A format for the Tutorials on the site

User Avatar
negow
27 posts
Offline
 Nov. 13, 2009 17:17:29
following up on lowell's question. Since the browser is mozilla, i.e. a seperate app embedded in the interface(?), would I be able to embed some other app, say zbrush, the same way? Through the HDK or even HOM?
See full post 

Technical Discussion » Rest attribute for Fur, using point()?

User Avatar
negow
27 posts
Offline
 Nov. 12, 2009 16:44:31
That is very good to know, thanks a bunch for your help derrick.
See full post 

Technical Discussion » Rest attribute for Fur, using point()?

User Avatar
negow
27 posts
Offline
 Nov. 12, 2009 14:24:36
To clarify the purpose, I'm not using the actual fur, but rather copying geo the the basepoint (plants, in this case), and using the others for wrap-deforming. The normals need to conform to the deforming and swaying of the fur simulation in order for both copying and wrapping to work correctly.
See full post 

Technical Discussion » Rest attribute for Fur, using point()?

User Avatar
negow
27 posts
Offline
 Nov. 12, 2009 14:18:57
Sorry, I meant to say, have the normal of every point, point towards the next point. ) The grammar gets confusing. Take a look at the hip file.
See full post 

Technical Discussion » Rest attribute for Fur, using point()?

User Avatar
negow
27 posts
Offline
 Nov. 12, 2009 13:27:59
Yeah. That did the trick, thanks.

While I have you here, how would you get the normals on the fur curves to always point to one another? Right now, I'm doing it the ForEach way (point 0 minus point 1, etc. per primitive), which works, but is very slow.
See full post 

Technical Discussion » Rest attribute for Fur, using point()?

User Avatar
negow
27 posts
Offline
 Nov. 12, 2009 11:33:17
It works, but is noticably slower than not using any rest pose, which re-populates the fur over the mesh per frame on my animated mesh. It doesn't seem right, as I'd think that populating only once would make it faster, not slower.

So how would you create the rest attribute, if not using the point() with $PT?
See full post 
  • First
  • 1
  • 2
  • Last
  • Quick Links
Search links
Show recent posts
Show unanswered posts
PRODUCTS
  • Houdini
  • Houdini Engine
  • Houdini Indie
LEARN
  • Talks & Webinars
  • Education Programs
SUPPORT
  • Customer Support
  • Help Desk | FAQ
  • Documentation
  • Report a Bug/RFE
LEGAL
  • Terms of Use
  • Privacy Policy
  • License Agreement
  • Accessibility
  • Responsible Disclosure Program
COMPANY
  • About SideFX
  • Careers
  • Press
  • Internships
  • Contact Info
Copyright © SideFX 2025. All Rights Reserved.

Choose language