With the depth frame and the color frame you should have enough data to achieve something similar to what you want to do.
In the color frame, you have the color of each pixels.
In the depth frame, you have the distance of each pixels.
(Keep in mind that there is a small gap between the data in the depth frame and the color frame due to the position of each sensor. Have a look at the mapping helper methods : MapDepthFrameToColorFrame)
If you take all the data in both the depth and the color frame, at the same time, you could draw each pixel as a point in a 3-dimensional world. Let's say you have a resolution of 640x480. You'll have a scene drawn in a rectangle of 640 (x = width), 480 (y = height), ~3000 (z = depth). Then you can change the point of view !
The only problem is that you won't have the right scale for the Z axis. If you want a better result, you should also use the SkeletonFrame. Thanks to that you'll have the actual X, Y, and Z values (in meters). Once again you can use the helper method (MapDepthToSkeletonPoint) to get the corresponding skeleton point for each depth point !
If you look at this post, you'll find a video that shows the result, some piece of code in C#, and a project sample that you can reuse.