Aslak Kjølås-Sæverud

AslakKS

About Me

3D Generalist
専門知識
Generalist

Connect

LOCATION
Bergen, Norway
ウェブサイト

Houdini Engine

ADVANCED
プロシージャルワークフロー  | Lighting  | Fluids  | PDG  | VEX
INTERMEDIATE
Environments  | Digital Assets  | Motion Editing  | Animation  | Hair & Fur  | Cloth  | Solaris  | Mantra  | Karma  | Pyro FX  | 説明  | Realtime FX  | Python
BEGINNER
Crowds  | Muscles

Availability

I am currently employed at Devant

Recent Forum Posts

Compare 2 Integer Arrays: Find Non-Shared Values?{[SOLVED]} 2025年5月16日18:47

I would do something like this, loop over B and check if each int is in A
int A[] = {3, 46, 23, 31, 49, 1};
int B[] = {23, 3, 14, 1};
int B_uniq[];
foreach(int B_val; B){
	if(find(A, B_val) < 0){
		append(B_uniq, B_val)
	}
}
i[]@B_uniq = B_uniq; // {14}

Custom Work Item Name 2025年3月25日12:24

It's called workitem label, it can be set multiple ways
1. Setting a default expression on the top net itself
2. With python work_item.setLabel()
3. Several nodes have a Work Item Label parameter under the Scheduler tab. Where you can use expressions that references workitem attribs

Vex : @name = @path but without "/" 2025年2月26日5:37

That's a job for replace() [www.sidefx.com]

s@name = replace(s@path, "/", "_"); // "/" becomes "_" 
// could also replace with "" to just remove the slash