Example usage for com.badlogic.gdx.math Quaternion set

List of usage examples for com.badlogic.gdx.math Quaternion set

Introduction

In this page you can find the example usage for com.badlogic.gdx.math Quaternion set.

Prototype

public Quaternion set(Quaternion quaternion) 

Source Link

Document

Sets the quaternion components from the given quaternion.

Usage

From source file:com.mbrlabs.mundus.commons.scene3d.SimpleNode.java

License:Apache License

@Override
public Quaternion getLocalRotation(Quaternion out) {
    return out.set(localRotation);
}