Hola! So, is it possible to select the points in a determinate range?
Something like that:
if (CARLA<2)
{
}
elif (1<CARLA<4)
{
}
elif (3<CARLA<6)
{
}
else
{
}
I hope it is, because if it’s not we must do something!
Hola! So, is it possible to select the points in a determinate range?
Something like that:
if (CARLA<2)
{
}
elif (1<CARLA<4)
{
}
elif (3<CARLA<6)
{
}
else
{
}
I hope it is, because if it’s not we must do something!
It is very much possible!
I think it would work anyway without ranges
if (CARLA <2)
{
}
elif (CARLA <4)
{
}
elif (CARLA <6)
{
}
else
{
}
I tried to do as @EtherealWitch said and it worked while with the range it didn’t.
It doesn’t seem logically correct for a program but as long as it works I have no complains 
Thanks everybody.

I’m going to assume your example is just an example because the numbers aren’t right, but
You can write
If(Carla<2){
…
}elif(Carla>1){
If(Carla<4){
…
Etc.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.