コード例 #1
0
ファイル: MLS.java プロジェクト: epsilony/SimpMeshfree
 public MLSFactory(
     SomeFactory<WeightFunctionCore> weightFunctionCoreFactory,
     SomeFactory<BasesFunction> basesFunctionFactory) {
   this.weightFunctionCoreFactory = weightFunctionCoreFactory;
   this.basesFunctionFactory = basesFunctionFactory;
   weightFunctionFactory = WeightFunctions.factory(weightFunctionCoreFactory);
 }
コード例 #2
0
ファイル: MLS.java プロジェクト: epsilony/SimpMeshfree
 public void setWeightFunctionCoreFactory(
     SomeFactory<WeightFunctionCore> weightFunctionCoreFactory) {
   this.weightFunctionCoreFactory = weightFunctionCoreFactory;
   weightFunctionFactory = WeightFunctions.factory(weightFunctionCoreFactory);
 }