PersistentTrails.Waypoint.Waypoint C# (CSharp) Méthode

Waypoint() public méthode

public Waypoint ( Waypoint other ) : System
other Waypoint
Résultat System
        public Waypoint(Waypoint other)
        {
            longitude = other.longitude;
            latitude = other.latitude;
            altitude = other.altitude;

            velocity = other.velocity;
            orientation = other.orientation;

            recordTime = other.recordTime;
        }

Same methods

Waypoint::Waypoint ( Vessel v ) : System
Waypoint::Waypoint ( double latitude, double longitude, double altitude, Quaternion orientation, Vector3 velocity, double recordTime ) : System
Waypoint