@@ -45,8 +45,7 @@ class ComparePlaneNodePriorities {
4545 * Constructs a new ClipPlaneAttrib object that enables (or disables,
4646 * according to op) the indicated plane(s).
4747 *
48- * This method is now deprecated. Use add_on_plane() or add_off_plane()
49- * instead.
48+ * @deprecated Use add_on_plane() or add_off_plane() instead.
5049 */
5150CPT (RenderAttrib) ClipPlaneAttrib::
5251make(ClipPlaneAttrib::Operation op, PlaneNode *plane) {
@@ -80,8 +79,7 @@ make(ClipPlaneAttrib::Operation op, PlaneNode *plane) {
8079 * Constructs a new ClipPlaneAttrib object that turns on (or off, according to
8180 * op) the indicate plane(s).
8281 *
83- * This method is now deprecated. Use add_on_plane() or add_off_plane()
84- * instead.
82+ * @deprecated Use add_on_plane() or add_off_plane() instead.
8583 */
8684CPT (RenderAttrib) ClipPlaneAttrib::
8785make(ClipPlaneAttrib::Operation op, PlaneNode *plane1, PlaneNode *plane2) {
@@ -118,8 +116,7 @@ make(ClipPlaneAttrib::Operation op, PlaneNode *plane1, PlaneNode *plane2) {
118116 * Constructs a new ClipPlaneAttrib object that turns on (or off, according to
119117 * op) the indicate plane(s).
120118 *
121- * This method is now deprecated. Use add_on_plane() or add_off_plane()
122- * instead.
119+ * @deprecated Use add_on_plane() or add_off_plane() instead.
123120 */
124121CPT (RenderAttrib) ClipPlaneAttrib::
125122make(ClipPlaneAttrib::Operation op, PlaneNode *plane1, PlaneNode *plane2,
@@ -160,8 +157,7 @@ make(ClipPlaneAttrib::Operation op, PlaneNode *plane1, PlaneNode *plane2,
160157 * Constructs a new ClipPlaneAttrib object that turns on (or off, according to
161158 * op) the indicate plane(s).
162159 *
163- * This method is now deprecated. Use add_on_plane() or add_off_plane()
164- * instead.
160+ * @deprecated Use add_on_plane() or add_off_plane() instead.
165161 */
166162CPT (RenderAttrib) ClipPlaneAttrib::
167163make(ClipPlaneAttrib::Operation op, PlaneNode *plane1, PlaneNode *plane2,
@@ -217,9 +213,9 @@ make_default() {
217213 * were already on, and if O_remove, the planes here are removed from the set
218214 * of planes that were on.
219215 *
220- * This method is now deprecated. ClipPlaneAttribs nowadays have a separate
221- * list of on_planes and off_planes, so this method doesn't make sense. Query
222- * the lists independently.
216+ * @ deprecated ClipPlaneAttribs nowadays have a separate list of on_planes and
217+ * off_planes, so this method no longer makes sense. Query the lists
218+ * independently.
223219 */
224220ClipPlaneAttrib::Operation ClipPlaneAttrib::
225221get_operation () const {
@@ -240,9 +236,9 @@ get_operation() const {
240236/* *
241237 * Returns the number of planes listed in the attribute.
242238 *
243- * This method is now deprecated. ClipPlaneAttribs nowadays have a separate
244- * list of on_planes and off_planes, so this method doesn't make sense. Query
245- * the lists independently.
239+ * @ deprecated ClipPlaneAttribs nowadays have a separate list of on_planes and
240+ * off_planes, so this method no longer makes sense. Query the lists
241+ * independently.
246242 */
247243int ClipPlaneAttrib::
248244get_num_planes () const {
@@ -259,9 +255,9 @@ get_num_planes() const {
259255/* *
260256 * Returns the nth plane listed in the attribute.
261257 *
262- * This method is now deprecated. ClipPlaneAttribs nowadays have a separate
263- * list of on_planes and off_planes, so this method doesn't make sense. Query
264- * the lists independently.
258+ * @ deprecated ClipPlaneAttribs nowadays have a separate list of on_planes and
259+ * off_planes, so this method no longer makes sense. Query the lists
260+ * independently.
265261 */
266262PlaneNode *ClipPlaneAttrib::
267263get_plane (int n) const {
@@ -279,9 +275,9 @@ get_plane(int n) const {
279275 * Returns true if the indicated plane is listed in the attrib, false
280276 * otherwise.
281277 *
282- * This method is now deprecated. ClipPlaneAttribs nowadays have a separate
283- * list of on_planes and off_planes, so this method doesn't make sense. Query
284- * the lists independently.
278+ * @ deprecated ClipPlaneAttribs nowadays have a separate list of on_planes and
279+ * off_planes, so this method no longer makes sense. Query the lists
280+ * independently.
285281 */
286282bool ClipPlaneAttrib::
287283has_plane (PlaneNode *plane) const {
@@ -299,8 +295,7 @@ has_plane(PlaneNode *plane) const {
299295 * Returns a new ClipPlaneAttrib, just like this one, but with the indicated
300296 * plane added to the list of planes.
301297 *
302- * This method is now deprecated. Use add_on_plane() or add_off_plane()
303- * instead.
298+ * @deprecated Use add_on_plane() or add_off_plane() instead.
304299 */
305300CPT (RenderAttrib) ClipPlaneAttrib::
306301add_plane(PlaneNode *plane) const {
@@ -318,8 +313,7 @@ add_plane(PlaneNode *plane) const {
318313 * Returns a new ClipPlaneAttrib, just like this one, but with the indicated
319314 * plane removed from the list of planes.
320315 *
321- * This method is now deprecated. Use remove_on_plane() or remove_off_plane()
322- * instead.
316+ * @deprecated Use remove_on_plane() or remove_off_plane() instead.
323317 */
324318CPT (RenderAttrib) ClipPlaneAttrib::
325319remove_plane(PlaneNode *plane) const {
0 commit comments