You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
28 lines
434 B
28 lines
434 B
[Visualizer] |
|
|
|
glm::detail::tvec2<*>{ |
|
preview ( |
|
#(#($c.x,$c.y)) |
|
) |
|
children ( |
|
#([x]: $c.x,[y]: $c.y) |
|
) |
|
} |
|
|
|
glm::detail::tvec3<*>{ |
|
preview ( |
|
#($e.x,$e.y,$e.z) |
|
) |
|
children ( |
|
#([x]: $e.x,[y]: $e.y,[z]: $e.z) |
|
) |
|
} |
|
|
|
glm::detail::tvec4<*>{ |
|
preview ( |
|
#($c.x,$c.y,$c.z,$c.w) |
|
) |
|
children ( |
|
#([x]: $e.x,[y]: $e.y,[z]: $e.z, #([w]: $e.w)) |
|
) |
|
}
|
|
|