Skip to content

Commit e659993

Browse files
authored
Merge pull request #26 from jnbrunet/replace_sofaallcommoncomponents
Replace all SofaAllCommonComponents occurrences by SofaComponentAll.
2 parents d18fb0a + beeb232 commit e659993

File tree

17 files changed

+19
-19
lines changed

17 files changed

+19
-19
lines changed

bindings/Sofa/package/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import Sofa.Core
99
import Sofa.Simulation
1010
import SofaRuntime
11-
SofaRuntime.importPlugin("SofaAllCommonComponents")
11+
SofaRuntime.importPlugin("SofaComponentAll")
1212
1313
n = Sofa.Core.Node("MyNode")
1414
n.addChild("Node2")

bindings/Sofa/src/SofaPython3/Sofa/Core/Binding_BaseCamera_doc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ static auto baseCameraClass =
3939
4040
import Sofa.Core
4141
import SofaRuntime
42-
SofaRuntime.importPlugin("SofaAllCommonComponents")
42+
SofaRuntime.importPlugin("SofaComponentAll")
4343
4444
root = Sofa.Core.Node("root")
4545
root.addObject("Camera", name="c")

bindings/Sofa/src/SofaPython3/Sofa/Core/Binding_BaseLink_doc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ static auto baseLinkClass =
4040
4141
import Sofa.Core
4242
import SofaRuntime
43-
SofaRuntime.importPlugin("SofaAllCommonComponents")
43+
SofaRuntime.importPlugin("SofaComponentAll")
4444
4545
root = Sofa.Core.Node("root")
4646
root.addObject("MechanicalObject", name="t")

bindings/Sofa/src/SofaPython3/Sofa/Core/Binding_BaseObject_doc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ static auto Class =
4444
4545
import Sofa.Core
4646
import SofaRuntime
47-
SofaRuntime.importPlugin("SofaAllCommonComponents")
47+
SofaRuntime.importPlugin("SofaComponentAll")
4848
4949
root = Sofa.Core.Node("root")
5050
root.addObject("MechanicalObject", name="obj") # Add a common Sofa object

bindings/Sofa/src/SofaPython3/Sofa/Simulation/Submodule_Simulation_doc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ static auto Class =
4343
4444
import Sofa.Core
4545
import SofaRuntime
46-
SofaRuntime.importPlugin("SofaAllCommonComponents")
46+
SofaRuntime.importPlugin("SofaComponentAll")
4747
4848
n = Sofa.Core.Node("MyNode")
4949
Sofa.Simulation.init(n)

bindings/Sofa/tests/Core/ForceField.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def createParticle(node, node_name, use_implicit_scheme, use_iterative_solver):
4141

4242

4343
def rssffScene(use_implicit_scheme=True, use_iterative_solver=True):
44-
SofaRuntime.importPlugin("SofaAllCommonComponents")
44+
SofaRuntime.importPlugin("SofaComponentAll")
4545
SofaRuntime.importPlugin("SofaSparseSolver")
4646
node = Sofa.Core.Node("root")
4747
node.gravity = [0, -10, 0]

bindings/Sofa/tests/bench_datacontainer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import Sofa.Core
77
import SofaRuntime
88

9-
SofaRuntime.importPlugin("SofaAllCommonComponents")
9+
SofaRuntime.importPlugin("SofaComponentAll")
1010

1111
rawcpy = numpy.zeros((1000000,3), dtype=numpy.float64)
1212

bindings/Sofa/tests/bench_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import Sofa.Core
1111
import SofaRuntime
1212

13-
SofaRuntime.importPlugin("SofaAllCommonComponents")
13+
SofaRuntime.importPlugin("SofaComponentAll")
1414

1515
it=1000
1616

bindings/Sofa/tests/benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import Sofa.Core
1010
import SofaRuntime
1111

12-
SofaRuntime.importPlugin("SofaAllCommonComponents")
12+
SofaRuntime.importPlugin("SofaComponentAll")
1313

1414
import numpy
1515
rawcpy = numpy.zeros((1000000,3), dtype=numpy.float64)

bindings/Sofa/tests/dataaccess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import Sofa.Core
99
import SofaRuntime
1010

11-
SofaRuntime.importPlugin("SofaAllCommonComponents")
11+
SofaRuntime.importPlugin("SofaComponentAll")
1212

1313
def oldSofa(obj):
1414
ol = obj.position.tolist()

0 commit comments

Comments
 (0)