forked from OpenNI/OpenNI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deal with a bad file rename - phase II
- Loading branch information
Showing
1 changed file
with
71 additions
and
0 deletions.
There are no files selected for viewing
71 changes: 71 additions & 0 deletions
71
Wrappers/OpenNI.java/src/org/OpenNI/AlternativeViewpointCapability.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/**************************************************************************** | ||
* * | ||
* OpenNI 1.x Alpha * | ||
* Copyright (C) 2011 PrimeSense Ltd. * | ||
* * | ||
* This file is part of OpenNI. * | ||
* * | ||
* OpenNI is free software: you can redistribute it and/or modify * | ||
* it under the terms of the GNU Lesser General Public License as published * | ||
* by the Free Software Foundation, either version 3 of the License, or * | ||
* (at your option) any later version. * | ||
* * | ||
* OpenNI is distributed in the hope that it will be useful, * | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of * | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * | ||
* GNU Lesser General Public License for more details. * | ||
* * | ||
* You should have received a copy of the GNU Lesser General Public License * | ||
* along with OpenNI. If not, see <http://www.gnu.org/licenses/>. * | ||
* * | ||
****************************************************************************/ | ||
package org.OpenNI; | ||
|
||
public class AlternativeViewpointCapability extends CapabilityBase | ||
{ | ||
public AlternativeViewpointCapability(ProductionNode node) throws StatusException | ||
{ | ||
super(node); | ||
|
||
this.viewPointChanged = new StateChangedObservable() | ||
{ | ||
@Override | ||
protected int registerNative(String cb, OutArg<Long> phCallback) | ||
{ | ||
return NativeMethods.xnRegisterToViewPointChange(toNative(), this, cb, phCallback); | ||
} | ||
|
||
@Override | ||
protected void unregisterNative(long hCallback) | ||
{ | ||
NativeMethods.xnUnregisterFromViewPointChange(toNative(), hCallback); | ||
} | ||
}; | ||
} | ||
|
||
public boolean isViewpointSupported(ProductionNode other) | ||
{ | ||
return NativeMethods.xnIsViewPointSupported(toNative(), other.toNative()); | ||
} | ||
|
||
public void setViewpoint(ProductionNode other) throws StatusException | ||
{ | ||
int status = NativeMethods.xnSetViewPoint(toNative(), other.toNative()); | ||
WrapperUtils.throwOnError(status); | ||
} | ||
|
||
public void resetViewpoint() throws StatusException | ||
{ | ||
int status = NativeMethods.xnResetViewPoint(toNative()); | ||
WrapperUtils.throwOnError(status); | ||
} | ||
|
||
public boolean isViewpointAs(ProductionNode other) | ||
{ | ||
return NativeMethods.xnIsViewPointAs(toNative(), other.toNative()); | ||
} | ||
|
||
public IStateChangedObservable getViewPointChangedEvent() { return this.viewPointChanged; } | ||
|
||
private StateChangedObservable viewPointChanged; | ||
} |