From 771ccb5b448a1cdac2ed4bf2fc211c47b3ff8caf Mon Sep 17 00:00:00 2001 From: Jan Herling Date: Tue, 24 Sep 2024 21:22:45 -0700 Subject: [PATCH] Improved documentation Summary: $title Reviewed By: enpe Differential Revision: D63351151 fbshipit-source-id: 3c73d297a6b89ee9ab397f49535e1e9643c6317d --- impl/ocean/rendering/Points.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/impl/ocean/rendering/Points.h b/impl/ocean/rendering/Points.h index ef31eed56..e9e4c6fb5 100644 --- a/impl/ocean/rendering/Points.h +++ b/impl/ocean/rendering/Points.h @@ -63,6 +63,8 @@ class OCEAN_RENDERING_EXPORT Points : virtual public IndependentPrimitive * Returns the size in pixels at which all points will be rendered. * The size of a point is defined by the diameter of the point. * @return The size of all points, in pixels, with range [1, infinity) + * @exception NotSupportedException Is thrown if this function is not supported + * @see setPointSize(). */ virtual Scalar pointSize() const; @@ -85,6 +87,8 @@ class OCEAN_RENDERING_EXPORT Points : virtual public IndependentPrimitive /** * Sets the size in pixels at which all points will be rendered. * @param size The size of all points, in pixels, with range [1, infinity) + * @exception NotSupportedException Is thrown if this function is not supported + * @see pointSize(). */ virtual void setPointSize(const Scalar size);