Changeset 1586 for trunk/examples/objects/api/cpp/curve
- Timestamp:
- Oct 23, 2009 7:56:25 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/objects/api/cpp/curve
r1581 r1586 54 54 55 55 void vvalue(void *storage, size_t numHints, va_list arg) const; 56 void random(); 57 Rp_Chain *diff(const Object& o); 56 58 57 59 void configure(size_t as, ClientData c); … … 281 283 Code Example: 282 284 285 void random(); 286 Purpose: populate the object with a random value 287 Input Arguments: 0 288 Return Value: None 289 Notes: the current value of this object will be populated 290 with a random value that fits within the min and 291 max if they were specified. 292 Code Example: 293 294 Rp_Chain *diff(const Rp_Object &o); 295 Purpose: return a linked list showing the differences between 296 this object and Rp_Object &o 297 Input Arguments: 1 298 1. const Rp_Object &o - object to diff against 299 Return Value: list of differences between objects 300 Notes: None 301 Code Example: 302 283 303 void configure(size_t as, ClientData c); 284 304 Purpose: configure the object based on the data in "c".
Note: See TracChangeset
for help on using the changeset viewer.