Back to project page model-explorer.
The source code is released under:
Apache License
If you think the Android project model-explorer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.etaoin.myopengltest.util.light; /*from w w w . j a v a 2 s .c o m*/ import com.etaoin.myopengltest.util.geometry.Vector3; public class PointLight { private Vector3 position; public PointLight(Vector3 position) { this.position = position; } public Vector3 getPosition() { return position; } }