MCPcopy Create free account
hub / github.com/JACoders/OpenJK / Parse3DMatrix

Function Parse3DMatrix

code/qcommon/q_shared.cpp:575–585  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

573}
574
575void Parse3DMatrix ( const char **buf_p, int z, int y, int x, float *m) {
576 int i;
577
578 COM_MatchToken( buf_p, "(" );
579
580 for (i = 0 ; i < z ; i++) {
581 Parse2DMatrix (buf_p, y, x, m + i * x*y);
582 }
583
584 COM_MatchToken( buf_p, ")" );
585}
586
587/*
588 ===================

Callers

nothing calls this directly

Calls 2

COM_MatchTokenFunction · 0.70
Parse2DMatrixFunction · 0.70

Tested by

no test coverage detected