~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/gameengine/SceneGraph/SG_Tree.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-07-23 08:54:18 UTC
  • mfrom: (14.2.16 sid)
  • mto: (14.2.19 sid)
  • mto: This revision was merged to the branch mainline in revision 42.
  • Revision ID: package-import@ubuntu.com-20120723085418-9foz30v6afaf5ffs
Tags: 2.63a-2
* debian/: Cycles support added (Closes: #658075)
  For now, this top feature has been enabled only
  on [any-amd64 any-i386] architectures because
  of OpenImageIO failing on all others
* debian/: scripts installation path changed
  from /usr/lib to /usr/share:
  + debian/patches/: patchset re-worked for path changing
  + debian/control: "Breaks" field added on yafaray-exporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * $Id: SG_Tree.h 29259 2010-06-06 01:15:44Z campbellbarton $
3
 
 *
 
1
/*
4
2
 * ***** BEGIN GPL LICENSE BLOCK *****
5
3
 *
6
4
 * This program is free software; you can redistribute it and/or
25
23
 * Contributor(s): none yet.
26
24
 *
27
25
 * ***** END GPL LICENSE BLOCK *****
28
 
 * Bounding Box
 
26
 */
 
27
 
 
28
/** \file SG_Tree.h
 
29
 *  \ingroup bgesg
29
30
 */
30
31
 
31
32
#ifndef __SG_TREE_H__
80
81
        /**
81
82
         * Gets the eight corners of this treenode's bounding box,
82
83
         * in world coordinates.
83
 
         * @param box: an array of 8 MT_Point3
84
 
         * @example MT_Point3 box[8];
 
84
         * \param box: an array of 8 MT_Point3
 
85
         * \example MT_Point3 box[8];
85
86
         *          treenode->get(box);
86
87
         */
87
88
        void get(MT_Point3 *box) const;
125
126
 *  SG_TreeFactory generates an SG_Tree from a list of SG_Nodes.
126
127
 *  It joins pairs of SG_Nodes to minimise the size of the resultant
127
128
 *  bounding box.
128
 
 *  cf building an optimised Huffman tree.
129
 
 *  @warning O(n^3)!!!
 
129
 *  cf building an optimized Huffman tree.
 
130
 *  \warning O(n^3)!!!
130
131
 */
131
132
class SG_TreeFactory 
132
133
{