你已经派生过 gprMax
镜像自地址
https://gitee.com/sunhf/gprMax.git
已同步 2025-08-08 07:24:19 +08:00
correct imports
这个提交包含在:
@@ -2,7 +2,7 @@
|
||||
from .cmds_geometry import UserObjectGeometry
|
||||
from ..exceptions import CmdInputError
|
||||
from ..materials import Material
|
||||
from ..geometry_primitives_ext import build_box
|
||||
from ..cython.geometry_primitives import build_box
|
||||
|
||||
from tqdm import tqdm
|
||||
import numpy as np
|
||||
|
@@ -2,7 +2,7 @@
|
||||
from .cmds_geometry import UserObjectGeometry
|
||||
from ..exceptions import CmdInputError
|
||||
from ..materials import Material
|
||||
from ..geometry_primitives_ext import build_cylinder
|
||||
from ..cython.geometry_primitives import build_cylinder
|
||||
|
||||
from tqdm import tqdm
|
||||
import numpy as np
|
||||
|
@@ -2,7 +2,7 @@
|
||||
from .cmds_geometry import UserObjectGeometry
|
||||
from ..exceptions import CmdInputError
|
||||
from ..materials import Material
|
||||
from ..geometry_primitives_ext import build_cylindrical_sector
|
||||
from ..cython.geometry_primitives import build_cylindrical_sector
|
||||
|
||||
from tqdm import tqdm
|
||||
import numpy as np
|
||||
|
@@ -1,9 +1,9 @@
|
||||
"""Class for edge command."""
|
||||
from .cmds_geometry import UserObjectGeometry
|
||||
from ..exceptions import CmdInputError
|
||||
from ..geometry_primitives_ext import build_edge_x
|
||||
from ..geometry_primitives_ext import build_edge_y
|
||||
from ..geometry_primitives_ext import build_edge_z
|
||||
from ..cython.geometry_primitives import build_edge_x
|
||||
from ..cython.geometry_primitives import build_edge_y
|
||||
from ..cython.geometry_primitives import build_edge_z
|
||||
|
||||
from tqdm import tqdm
|
||||
|
||||
|
@@ -2,8 +2,8 @@
|
||||
from .cmds_geometry import UserObjectGeometry
|
||||
from ..exceptions import CmdInputError
|
||||
from ..constants import floattype
|
||||
from gprMax.geometry_primitives_ext import build_voxels_from_array
|
||||
from gprMax.geometry_primitives_ext import build_voxels_from_array_mask
|
||||
from ..cython.geometry_primitives import build_voxels_from_array
|
||||
from ..cython.geometry_primitives import build_voxels_from_array_mask
|
||||
|
||||
import numpy as np
|
||||
|
||||
|
@@ -1,9 +1,9 @@
|
||||
"""Class for edge command."""
|
||||
from .cmds_geometry import UserObjectGeometry
|
||||
from ..exceptions import CmdInputError
|
||||
from ..geometry_primitives_ext import build_face_yz
|
||||
from ..geometry_primitives_ext import build_face_xz
|
||||
from ..geometry_primitives_ext import build_face_xy
|
||||
from ..cython.geometry_primitives import build_face_yz
|
||||
from ..cython.geometry_primitives import build_face_xz
|
||||
from ..cython.geometry_primitives import build_face_xy
|
||||
|
||||
from tqdm import tqdm
|
||||
|
||||
|
@@ -2,7 +2,7 @@
|
||||
from .cmds_geometry import UserObjectGeometry
|
||||
from ..exceptions import CmdInputError
|
||||
from ..materials import Material
|
||||
from ..geometry_primitives_ext import build_sphere
|
||||
from ..cython.geometry_primitives import build_sphere
|
||||
|
||||
from tqdm import tqdm
|
||||
import numpy as np
|
||||
|
@@ -2,7 +2,7 @@
|
||||
from .cmds_geometry import UserObjectGeometry
|
||||
from ..exceptions import CmdInputError
|
||||
from ..materials import Material
|
||||
from ..geometry_primitives_ext import build_triangle
|
||||
from ..cython.geometry_primitives import build_triangle
|
||||
|
||||
from tqdm import tqdm
|
||||
import numpy as np
|
||||
|
在新工单中引用
屏蔽一个用户