Vladimir XoXoXoXoX

kivril

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

How to stale along normals& March 23, 2023, 4:27 a.m.

Hello! I have a pillar with base. Base made of pillars main shape + sweep node. How can i scale it so the base is evenle scaled(like in blender scale along normals)? Thx!

why npoints(0) does not give the right result& March 13, 2023, 10:33 a.m.

Soothsayer
npoints(0) returns 241
the time i sent it i realizet that i have to put -1 in this function)
Thank you!

why npoints(0) does not give the right result& March 13, 2023, 10:10 a.m.

Hello! I heve 241 point, an i want to get te first and the last point,and i name them i@end =1

if i maualy enter total number, i get this:

if(@ptnum == 240){
i@end = 1;
}
if(@ptnum == 0){
i@end = 1;
}
and it is working, but if i want to make it change prociduraly:
if(@ptnum == npoints(0)){
i@end = 1;
}
if(@ptnum == 0){
i@end = 1;
}

i don't get the right result