Deprecated\Vector\VBufferMathUtils.cs (9)
109VBufferUtils.Resize(ref dst, length, 0);
157VBufferUtils.ApplyWith(in src, ref dst, (int i, float v1, ref float v2) => v2 += v1);
185VBufferUtils.ApplyWith(in src, ref dst, (int i, float v1, ref float v2) => v2 += c * v1);
214VBufferUtils.ApplyWithCopy(in src, ref dst, ref res, (int i, float v1, float v2, ref float v3) => v3 = v2 + c * v1);
231VBufferUtils.ApplyInto(in a, in b, ref dst, (ind, v1, v2) => v1 + c * v2);
376/// <see cref="VBufferUtils.ApplyInto{TSrc1,TSrc2,TDst}"/> except perhaps more efficiently,
399VBufferUtils.Resize(ref dst, src.Length, 0);
403VBufferUtils.ApplyIntoEitherDefined(in src, ref dst, (i, v) => -v);
405VBufferUtils.ApplyIntoEitherDefined(in src, ref dst, (i, v) => c * v);