Karl Habanero

alexwheezy

About Me

Connect

LOCATION
Not Specified
ウェブサイト

Houdini Engine

Availability

Not Specified

Recent Forum Posts

Cannot find Cross Product VOP node 2024年12月13日10:05

I think you have changed the definition of this node. The easiest solution would be to backup the houdini20.5 folder in your home user directory and start Houdini again.

Cannot find Cross Product VOP node 2024年12月12日1:53

Hi,
many reasons can be for this behaviour but can you create a node using Python?
hou.node("/obj").createNode("geo").createNode("attribvop").createNode("cross")

Vex question: two highest (@P.y) points from a group? 2024年12月11日17:01

An easy way to do this:
upadate:
float pos[];
int grp[] = expandpointgroup(0, "endPts");
foreach(int pt; grp){
    push(pos, vector(point(0, "P", pt)).y);
}

float result[] = sort(pos);
int pts[] = argsort(pos)[-2:];