MCPcopy Create free account
hub / github.com/LuxCoreRender/LuxCore / GetValuesString

Method GetValuesString

src/luxrays/utils/properties.cpp:455–464  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

453}
454
455string Property::GetValuesString() const {
456 stringstream ss;
457
458 for (unsigned int i = 0; i < values.size(); ++i) {
459 if (i != 0)
460 ss << " ";
461 ss << Get<string>(i);
462 }
463 return ss.str();
464}
465
466//------------------------------------------------------------------------------
467// Get basic types

Callers 2

test_Property_StringMethod · 0.95
GetTextureMethod · 0.80

Calls 2

sizeMethod · 0.45
strMethod · 0.45

Tested by 1

test_Property_StringMethod · 0.76