Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
To repozytorium jest zarchiwizowane. Możesz wyświetlać pliki i je sklonować, ale nie możesz do niego przepychać zmian lub otwierać zgłoszeń/Pull Requestów.
|
- using UnityEngine;
- using System.Collections.Generic;
- using System.Collections;
-
- namespace coa4u
- {
- public class PredicateDistanceGreater : Predicate
- {
- protected CalcerVector first;
- protected CalcerVector second;
- protected float distance;
-
- public PredicateDistanceGreater(CalcerVector one, CalcerVector other, float dist)
- : base()
- {
- first = one;
- second = other;
- distance = dist;
- }
-
- public override bool check()
- {
- if (Vector3.Distance(first.value, second.value) > distance)
- return true;
- else
- return false;
- }
- }
- }
|