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 306 posts.

Search results Show results as topic list.

Technical Discussion » SubTunnel

User Avatar
kuba
345 posts
Offline
 Aug. 20, 2014 02:01:45
Hi All,
After long and tedious testing phase I'm happy to announce SubTunnel - a Sublime plugin which allows sending code snippets to any open Houdini session.

There are two primary reason this tool was created. The first one is to boost productivity by taking advantage of all feature of a mature text editor. The second one is to remove restrictions of currently existing workflows such as:
⁃ locking main UI loop while editing code with an external text editor
⁃ cumbersome editing in a small non-resizable UI which is the case in all script/wrangle nodes

The plugin has been test on 3 major platforms (extensively on Linux) - on Windows no cygwin is required.

So please check it out and let me know in case of any questions, ideas or problems.

Github: https://github.com/kubaroth/SubTunnel [github.com]
Vimeo: https://vimeo.com/103876297 [vimeo.com]

Enjoy,
kuba
See full post 

Technical Discussion » creating thousands of nodes, memory / speed?

User Avatar
kuba
345 posts
Offline
 April 17, 2013 05:28:51
Using vop sop in otls is generally not recommended, especially when using many copies of the same asset. As Matt said above compiling to vex sop is the way to go. Every time the scene is loaded, Houdini compiles all vop sops nodes into vex and this can take a while. Same goes with shaders. If you have tons of materials it may be reasonable to compile them too.

kuba
See full post 

Technical Discussion » VRAY Procedural on Mac

User Avatar
kuba
345 posts
Offline
 Feb. 26, 2013 15:44:52
You need to remove the following from VRAYprocedural
#if defined(WIN32)
#define DSO_FILE(filename) mantra/filename.dll
#else
#define DSO_FILE(filename) mantra/filename.so
#endif

…and replace with whatever library extension is used on osx (dylib as far as I recall)

kuba
See full post 

Technical Discussion » fuse SOP distance

User Avatar
kuba
345 posts
Offline
 July 6, 2012 19:13:33
ndickson
It's because the fuse SOP uses the L1-norm distance instead of the usual L2-norm distance

I wonder if the same thing happens in facetSOP?…
See full post 

Technical Discussion » How to get smooth like in Maya ?

User Avatar
kuba
345 posts
Offline
 June 21, 2012 16:48:33
Do you mean smoothing normals according to the angle between neighbor faces? You can try to use a ‘vertex’ sop and change ‘Keep normal’ to ‘Cusp normal’ and adjust the angle…. Is that what you were looking for?
See full post 

Technical Discussion » mantra network render

User Avatar
kuba
345 posts
Offline
 May 25, 2012 13:11:19
I've done some work on XP a few years back and -H works well too. The only thing you need to bare in mind is to use UNC paths instead. Otherwise mantra will not resolve textures properly.


kuba
See full post 

Technical Discussion » Run Function from PYTHON SOP

User Avatar
kuba
345 posts
Offline
 March 30, 2012 02:22:03
I have nothing to add, just second all above. Code section is not going to work with the buttons since it is cooked every time. I'm not exactly sure what you heading for but perhaps what you want to do is to split Code section into several separate python sops embedded inside parent HDA with all the ‘trigger’ functions…
See full post 

Houdini Lounge » Autocad into Houdini help

User Avatar
kuba
345 posts
Offline
 March 26, 2012 11:22:03
All above is true, although the problem you may already found out is actually limited number of formats autocad supports. I would use 3rd party tool which allows you to convert dwg files into iges format. Iges support lines, not only polygons and can preserve colour which might be a good way to partition geometry in Houdini. I used Rhinoceros in the past a lot and it worked out best out of available solutions.

kuba
See full post 

Houdini Lounge » Switching OS and licences

User Avatar
kuba
345 posts
Offline
 Feb. 1, 2012 17:06:26
faizol
Just curious, what would happen if it's more than 3 times?
You need to contact support. It shouldn't be a problem to top up your returns.
See full post 

Technical Discussion » Copy sop and intersecting geometry

User Avatar
kuba
345 posts
Offline
 Oct. 6, 2011 01:40:56
This is a quick idea, which would involve building a bit more complex foreach network with the cookie sop inside. Check if the intersect operation returns you something…any primitive for instance. If it does then your input mesh has some intersection areas, if it doesn't you are good to move on.

Sounds pretty simple but might get tricky and slow if you have heavy stuff to process.
See full post 

Technical Discussion » hou.Parm.menuItems() question

User Avatar
kuba
345 posts
Offline
 Oct. 1, 2011 13:02:54
www.sidefx.com/docs/houdini11.1/hom/hou/hscriptExpression
See full post 

Houdini Indie and Apprentice » How to hole the homes

User Avatar
kuba
345 posts
Offline
 Sept. 30, 2011 21:32:58
I certainly wouldn't go this route. Why do you want to build this in python? Procedural workflow in houdini gives you much better options. Have you tried fore each loop or feedback sop?
See full post 

Technical Discussion » hou.Parm.menuItems() question

User Avatar
kuba
345 posts
Offline
 Sept. 30, 2011 21:26:09
Unfortunately menuItems() doesn't like strings at the moment . Use hscript function instead (if I remember right it was opmenu)
See full post 

Technical Discussion » OTL/ brush tool

User Avatar
kuba
345 posts
Offline
 July 16, 2011 00:48:27
laiwayne
Is there anyway that I can keep my OTL as current node and I also can get the brush tool and paint?

Well, you can mimic this behaviour, at least to certain extents. What I often do is to use a pin method to lock down the parameters window the paint operation was triggered from. The downside of this approach is to unpin the window manually each time once you are done.
See full post 

Technical Discussion » Adding two columns of detail attributes together into one ?

User Avatar
kuba
345 posts
Offline
 May 28, 2011 14:03:01
point(“../geo1/grid1), ”DETAIL NAME1“, 0)+point(”../geo1/grid1), “DETAIL NAME2”, 0)

For mor info type exhelp point in textport
See full post 

Technical Discussion » truncating the output of `opinput`

User Avatar
kuba
345 posts
Offline
 May 23, 2011 01:48:27
substr(“test1”,0,strlen(“test1”)-1)
See full post 

Technical Discussion » Compile HDK nodes on mac H11

User Avatar
kuba
345 posts
Offline
 May 23, 2011 01:31:04
Hi Simon,
I think this is due to write permission errors.
This link might help:
http://forums.odforce.net/index.php?/topic/12325-compiling-problem-mac-os-10-6-4/ [forums.odforce.net]

Cheers,
kuba
See full post 

Houdini Lounge » Selling my Houdini Escape Cheap

User Avatar
kuba
345 posts
Offline
 May 23, 2011 01:26:37
Do you have Prisms by any chance?
oh, almost forgot have you read this in the first place:
http://www.sidefx.com/index.php?option=com_content&task=view&id=1206&Itemid=273#transfer [sidefx.com]

- I think the license is not transferable
See full post 

Technical Discussion » Installing Hqueue on OSX Fails

User Avatar
kuba
345 posts
Offline
 May 21, 2011 23:59:14
You're not using apprentice, are you? There a few things you can try in the first place:

Install houdini first and skip the hqueue
Install hserver and activate the license
Once the license is set up and you are able to run houdini try running installer again this time choosing only hqueue.

I remember the upgrade (option) didn't work for me too so I've been always choosing a full install.

Again since it was some time ago I don't exactly remember all details, sorry.

PS. This thread might also be informative
http://forums.odforce.net/index.php?/topic/11942-hqueue-how-to/page__hl__hqueue__fromsearch__1 [forums.odforce.net]
See full post 

Technical Discussion » Include Frame Counter in Render

User Avatar
kuba
345 posts
Offline
 April 25, 2011 17:15:59
Or overlay a text in COPs to have always an option if you change mind.
See full post 
  • First
  • 1
  • 2
  • 3
  • 4
  • 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