Search - User list
Full Version: Houini bezier curves, are not bezier??
Root » Houdini Lounge » Houini bezier curves, are not bezier??
OdFotan
When i change the curves to bezier,
i don't get handles
it's the same as nurbs curve?

Why is this?
I'd like handles.
Doudini


its not the same as nurbs curves. it is bezier. you just dont see the connection of the control points and endpoints.

I agree that it is weird and should be changed. For artists this is just not user friendly at all. I remember i got confused too and once you have a lot of points in there it is getting hard to determine the control points.

please SESI update the way we can edit curves. its a pain in the ass tbh.
OdFotan
thanks!
how stupid is that indeed!
how do i merge two ‘handles’, now they are always ‘broken’ anchor points.

is there some manual/tutorial for bezier curves in houdini out there?
circusmonkey
This has been a RFE for years with Houdini . Bezier control points ALA 3ds Max . You have to remember Houdini was never designed as a modeller and now you have free applications like Blender it makes it pretty pointless spending development cash in areas that are not a strong focus already.

Its far from ideal I know and I feel your pain, Ive lived without them since v 8.1. They are very handy !~

Rob
anon_user_89151269
Having the ability to create a project from start to finish within one single program is ideal. I know that having limited resources and having to compete in the same time will put some wrenches in achieving that ideal, but abandoning it from the get go is flat out wrong IMO.

Regarding this particular issue - I'll go out on a limb and say that adding those control points to bezier curves is not that big of an investment time/money wise, it's just something that was probably not requested as much in order to be bumped up to the front of the queue. Like it's the case with so many other features Houdini lacks in “artist areas” for which there are probably submitted RFEs .
Doudini
McNistor
Having the ability to create a project from start to finish within one single program is ideal. I know that having limited resources and having to compete in the same time will put some wrenches in achieving that ideal, but abandoning it from the get go is flat out wrong IMO.

Regarding this particular issue - I'll go out on a limb and say that adding those control points to bezier curves is not that big of an investment time/money wise, it's just something that was probably not requested as much in order to be bumped up to the front of the queue. Like it's the case with so many other features Houdini lacks in “artist areas” for which there are probably submitted RFEs .

very well summed up. +1
dedeks2999
McNistor
Having the ability to create a project from start to finish within one single program is ideal. I know that having limited resources and having to compete in the same time will put some wrenches in achieving that ideal, but abandoning it from the get go is flat out wrong IMO.

Regarding this particular issue - I'll go out on a limb and say that adding those control points to bezier curves is not that big of an investment time/money wise, it's just something that was probably not requested as much in order to be bumped up to the front of the queue. Like it's the case with so many other features Houdini lacks in “artist areas” for which there are probably submitted RFEs .


+10000
mestela
Or just make your own. Put this in a attrib wrangle in detail mode:

// first handle
int line = addprim(0, ‘polyline’);
addvertex(0,line, 0);
addvertex(0,line, 1);

// last handle
line = addprim(0, ‘polyline’);
addvertex(0,line, @numpt);
addvertex(0,line, @numpt-1);

// the rest
for (int i=2; i<@numpt; i+=3) {
line = addprim(0, ‘polyline’);
addvertex(0,line, i);
addvertex(0,line, i+1);
addvertex(0,line, i+2);
}
Doudini
dude, thats pretty neat. Not perfect but damn this awesome to finally have a visualized bezier.

thanks so much. This should be posted in the Favorite Wrangle Topic too.
anon_user_37409885
Very cool. Another hack is turning on Display Primitive Hulls
Masoud
mestela
Or just make your own. Put this in a attrib wrangle in detail mode:

// first handle
int line = addprim(0, ‘polyline’);
addvertex(0,line, 0);
addvertex(0,line, 1);

// last handle
line = addprim(0, ‘polyline’);
addvertex(0,line, @numpt);
addvertex(0,line, @numpt-1);

// the rest
for (int i=2; i<@numpt; i+=3) {
line = addprim(0, ‘polyline’);
addvertex(0,line, i);
addvertex(0,line, i+1);
addvertex(0,line, i+2);
}


Thanks Mestela; your codes are awesome.
anon_user_00157425
With H17 it's possible to implement a proper bezier handle with python states.

https://www.sidefx.com/forum/topic/58427/?page=1#post-261971 [www.sidefx.com]
bobc4d
I am learning Houdini, I entered this but keep getting “i” as and undefined variable.
BabaJ
I am learning Houdini, I entered this but keep getting “i” as and undefined variable.

You likely inadvertantly made a typo…post your code if you still have problems.
bobc4d
BabaJ
I am learning Houdini, I entered this but keep getting “i” as and undefined variable.

You likely inadvertantly made a typo…post your code if you still have problems.
I am betting that is it. here is what i have

// first handle
int line = addprim(0,'polyline');
addvertex(0,line,0);
addvertex(0,line,1);

//last handle
line = addprim(0,'polyline');
addvertex(0,line,@numpt);
addvertex(0,line,@numpt-1);

//the rest
for (int i=2;i<@numpt;i+=3);
{
line = addprim(0,'polyline');
addvertex(0,line,i);
addvertex(0,line,i+1);
addvertex(0,line,i+2);
}

found the error. I have semicolon before the { on for line
EricSheng
Also you can't select multiple points and move them around which is pretty annoy.
Ludvík Koutný
Hello,

adding my voice here too. I have been absolutely unable to use curve tool to create a simple desired shape. The workflow for me, as a Houdini beginner is impossible to figure out. Furthermore, the fact that something as trivial as a curve tool even has a learning curve is on its own scary. Curve tools are something one is usually able to pick up and use straight away in most software packages. It should not have any learning curve at all, let alone having a so complex one user like me still fails to get desired result after half a day of trying.
Alex Amos
Been using Houdini for around 10 months now, doing fairly advanced things, still havnt been able to use the curve tool in any way or form that's usable - I've been extremely successful using the curve/path tools from pretty much any software, 3dsmax, Maya, Photoshop, Illustrator, etc, but drawing simple curves in Houdini is a nightmare, my workflow at the moment is to create them in Illustrator, import them into 3dsmax and then import into Houdini, which is ridiculous….
Olaf Finkbeiner
Hi ,
i am planning to do a tutorial about curve / drawing and construction. I would love some tricky real world tasks to solve.
So please send me describtions and or drawings of curves that you struggle to create/paint in Houdini.

thanks

Olaf
jsmack
Is this a troll thread?
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB