Changeset 1586 for trunk/examples/objects/api/c/plot
- Timestamp:
- Oct 23, 2009 7:56:25 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/objects/api/c/plot
r1581 r1586 42 42 void Rp_PlotVValue(Rp_Plot *p, void *storage, size_t numHints, 43 43 va_list arg) const; 44 void Rp_PlotRandom(); 45 Rp_Chain *Rp_PlotDiff(Rp_Plot *o); 44 46 45 47 void Rp_PlotConfigure(Rp_Plot *p, size_t as, ClientData c); … … 264 266 Code Example: 265 267 268 void Rp_PlotRandom(); 269 Purpose: populate the object with a random value 270 Input Arguments: 0 271 Return Value: None 272 Notes: the current value of this object will be populated 273 with a random value that fits within the min and 274 max if they were specified. 275 Code Example: 276 277 Rp_Chain *Rp_PlotDiff(const Rp_Object *o); 278 Purpose: return a linked list showing the differences between 279 this object and Rp_Object *o 280 Input Arguments: 1 281 1. const Rp_Object *o - object to diff against 282 Return Value: list of differences between objects 283 Notes: None 284 Code Example: 285 266 286 void Rp_PlotConfigure(Rp_Plot *p, size_t as, ClientData c); 267 287 Purpose: configure the object based on the data in "c".
Note: See TracChangeset
for help on using the changeset viewer.