(label: &'static str, index: u32)
| 47 | /// Creates a ply id using the `label` and the `index` |
| 48 | #[inline] |
| 49 | pub fn new_index(label: &'static str, index: u32) -> Id { |
| 50 | engine::hash_string_with_offset(label, index, 0) |
| 51 | } |
| 52 | |
| 53 | #[inline] |
| 54 | pub fn new_index_seed(label: &'static str, index: u32, seed: u32) -> Id { |
nothing calls this directly
no test coverage detected