示例#1
0
        public static BoundingBox GetBoundingBoxData(this ComputeBuffer cb)
        {
            var temp = cb.GetFloat4Data();

            return(new BoundingBox(temp.xy, temp.zw));
        }