File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -102,8 +102,8 @@ class PointData {
102
102
}
103
103
104
104
// / insert or replace vector data array
105
- void insertNextVectorData (const VectorDataType &vectors,
106
- std::string label = " Vectors" ) {
105
+ void insertReplaceVectorData (const VectorDataType &vectors,
106
+ std::string label = " Vectors" ) {
107
107
if (int i = getVectorDataIndex (label); i != -1 ) {
108
108
vectorData[i] = vectors;
109
109
} else {
@@ -112,8 +112,8 @@ class PointData {
112
112
}
113
113
114
114
// / insert new vector data array
115
- void insertNextVectorData (VectorDataType &&vectors,
116
- std::string label = " Vectors" ) {
115
+ void insertReplaceVectorData (VectorDataType &&vectors,
116
+ std::string label = " Vectors" ) {
117
117
if (int i = getVectorDataIndex (label); i != -1 ) {
118
118
vectorData[i] = std::move (vectors);
119
119
} else {
You can’t perform that action at this time.
0 commit comments