added knearestdist to datasert (#169)

nix
tremblap 2 years ago committed by GitHub
parent 7fbaf8fdab
commit 278c64ab39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -110,4 +110,13 @@ FluidDataSet : FluidDataObject
actions[\kNearest] = [strings(FluidMessageResponse,_,_),action];
this.prSendMsg(this.kNearestMsg(buffer,k));
}
kNearestDistMsg {|buffer, k|
^this.prMakeMsg(\kNearestDist,id,this.prEncodeBuffer(buffer),k);
}
kNearestDist { |buffer, k, action|
actions[\kNearestDist] = [numbers(FluidMessageResponse,_,nil,_),action];
this.prSendMsg(this.kNearestDistMsg(buffer,k));
}
}

Loading…
Cancel
Save