Right now functions like setPointCloudRenderingProperties use an int to represent the property to be modified. This means that there is no way of knowing which properties are accepted by the function. A solution is to use strongly typed enum instead of int for properties. The issue was brought up in #1668.
Right now functions like
setPointCloudRenderingPropertiesuse anintto represent the property to be modified. This means that there is no way of knowing which properties are accepted by the function. A solution is to use strongly typedenuminstead ofintfor properties. The issue was brought up in #1668.