MCPcopy Create free account
hub / github.com/arrayfire/forge / VectorField

Method VectorField

src/api/cpp/vector_field.cpp:18–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16namespace forge
17{
18VectorField::VectorField(const unsigned pNumPoints, const dtype pDataType, const ChartType pChartType)
19{
20 fg_vector_field temp = 0;
21 FG_THROW(fg_create_vector_field(&temp, pNumPoints, (fg_dtype)pDataType, pChartType));
22 std::swap(mValue, temp);
23}
24
25VectorField::VectorField(const VectorField& pOther)
26{

Callers

nothing calls this directly

Calls 3

fg_create_vector_fieldFunction · 0.85
fg_retain_vector_fieldFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected