Files
frameworks_base/graphics/java/android/renderscript/Float3.java
Alex Sakhartchouk a0c2eb27b4 Deprecate
Change-Id: Idad2c5ad4f8a30f8cc60d88318f2e1809866d309
2012-04-19 16:30:58 -07:00

44 lines
1.1 KiB
Java

/*
* Copyright (C) 2009 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.renderscript;
import java.lang.Math;
import android.util.Log;
/** @deprecated renderscript is deprecated in J
* Class for exposing the native Renderscript float2 type back to the Android system.
*
**/
public class Float3 {
public Float3() {
}
public Float3(float initX, float initY, float initZ) {
x = initX;
y = initY;
z = initZ;
}
public float x;
public float y;
public float z;
}