You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
330 B
Python
18 lines
330 B
Python
FluidMDS : FluidManipulationClient {
|
|
var id;
|
|
|
|
*new {|server|
|
|
var uid = UniqueID.next;
|
|
^super.new(server,uid).init(uid);
|
|
}
|
|
|
|
init {|uid|
|
|
id = uid;
|
|
}
|
|
|
|
fitTransform{|sourceDataset, k, dist, destDataset, action|
|
|
this.pr_sendMsg(\fitTransform,[sourceDataset.asString, k, dist, destDataset.asString],action);
|
|
}
|
|
|
|
}
|