Constant CHOP expressions

Hi

Small easy question for you.

Instead of using lots of math nodes and etc i wanna do some simple formulas in a constant chop.

Lets say it looks like this:

start: 10
length: 30

I want to do another channel in that constant chop that does this: Start+length.

I tried to do this:
chop(“constant1/start”)+chop(“constant1/length”)

but it says “Infinite recursion in evaluation” and “path invalid”, but it still calculates to correct values.

I guess theres simplier way of writing this too…

cheers!

I believe it is because you reference your constant in itself. Try to do calculation in the other node. But I am a beginner myself so I might be wrong

hm yeah, but it should be doable to do x+y+z calculations from different channels in one chop?

use par(“./value0”) to get the first channel, par(“./value1”) to get the second, …