* Create and return a new PathModel object * @param {Array} categoryInds * @param color * @param rawColor * @return {PathModel}
(categoryInds, color, rawColor)
| 337 | * @return {PathModel} |
| 338 | */ |
| 339 | function createPathModel(categoryInds, color, rawColor) { |
| 340 | return { |
| 341 | categoryInds: categoryInds, |
| 342 | color: color, |
| 343 | rawColor: rawColor, |
| 344 | valueInds: [], |
| 345 | count: 0 |
| 346 | }; |
| 347 | } |
| 348 | |
| 349 | /** |
| 350 | * Update a PathModel object with a new value index |
no outgoing calls
no test coverage detected
searching dependent graphs…