static public Task Build(VoxelData2Point vd2p, VoxelProduct product) { Task task = new Task(); task.init = delegate { vd2p.build(product); }; return(task); }
void create() { int tick = ConvertDateTimeInt(DateTime.Now); // this._director.clear();//.arrange (); product_ = new VoxelProduct(); VoxelData2Point vd2p = new VoxelData2Point(); vd2p.setup(this.vs2.datas.ToArray()); vd2p.build(product_); logIt("create", ConvertDateTimeInt(DateTime.Now) - tick); }
static public void Run(VoxelData2Point d2p, VoxelProduct product) { d2p.build(product); }