Britbot

checks if a curtain node is passible, meaning its wight isn't infinity

Returns:
True if it has a finite weight, else otherwise

Definition at line 266 of file Node.cs.

            {
                return this.Weight < Node.Infinity;
            }