View randomcoords.cpp
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
#include <node.h> | |
#include <v8.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
using namespace v8; | |
Handle<Value> getRandomCoords2D(const Arguments& args) { | |
HandleScope scope; | |
View SimpleViewerCustom.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
/**************************************************************************** | |
* * | |
* 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 * |
View instance_v_proto.js
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
/** | |
* don't know how to use prototype style class defs. It's possible to use method.apply to infer scope, | |
* however it gets complicated when using 3rd party libs and passing a cb function as a parameter. | |
* I've seen context wrappers that do this, but it seems overly complicated when I can just use instance style | |
*/ | |
function InstanceStyleTest() { | |
var self = this; | |
this.methodA = function() { |
NewerOlder