CCT.NUI.Core.OpenNI.DepthDataFrameFactory.Create C# (CSharp) Method

Create() public method

public Create ( IntPtr pointer ) : DepthDataFrame
pointer System.IntPtr
return DepthDataFrame
        public DepthDataFrame Create(IntPtr pointer)
        {
            var depthDataFrame = new DepthDataFrame(this.size.Width, this.size.Height);
            this.Create(depthDataFrame, pointer);
            return depthDataFrame;
        }

Same methods

DepthDataFrameFactory::Create ( DepthDataFrame depthDataFrame, IntPtr pointer ) : void
DepthDataFrameFactory