MCPcopy Create free account
hub / github.com/PDAL/PDAL / Key

Function Key

io/private/ept/Key.hpp:52–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50 {}
51
52 Key(const std::string& s)
53 {
54 const StringList tokens(Utils::split(s, '-'));
55 if (tokens.size() != 4)
56 throw pdal_error("Invalid EPT KEY: " + s);
57 d = std::stoi(tokens[0]);
58 x = std::stoi(tokens[1]);
59 y = std::stoi(tokens[2]);
60 z = std::stoi(tokens[3]);
61 }
62
63 BOX3D b;
64

Callers 1

Key.hppFile · 0.70

Calls 2

splitFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected