Vector list out

Hi, i am trying to get vector list from list of angles. I would like to lists of angles, based on angle define specified vector. If someone can help me. Home3.dyn (7.1 KB)

Hi,

The B and C you are using in the definition of your function (choosParamName) have to be defined, or have to be part of the inputs.

Try:

def chooseParamName(pomak : double , B, C){
    result = (pomak>0 && pomak<45)?B:C;
    return = result;
};

You could also use DesignSyntax.

Thank you, this is what i need.