Skip to content

Commit

Permalink
Reference bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kskinoue0612 committed Sep 6, 2022
1 parent a7b99cf commit 4eb5750
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion source/06/03/cg_iric_read_grid2d_open_withgridid.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cg_iric_read_grid2d_open_withgridid
---------------
.. code-block:: python
g_handle = cg_iRIC_Read_Grid2d_Open_WithGridId(fid)
g_handle = cg_iRIC_Read_Grid2d_Open_WithGridId(fid, gid)
引数
----
Expand Down
2 changes: 1 addition & 1 deletion source/06/03/cg_iric_read_grid_cellcount_withgridid.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cg_iric_read_grid_cellcount_withgridid
---------------
.. code-block:: python
count = cg_iRIC_Read_Grid_CellCount_WithGridId(fid)
count = cg_iRIC_Read_Grid_CellCount_WithGridId(fid, gid)
引数
----
Expand Down
2 changes: 1 addition & 1 deletion source/06/03/cg_iric_read_grid_nodecount_withgridid.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cg_iric_read_grid_nodecount_withgridid
---------------
.. code-block:: python
count = cg_iRIC_Read_Grid_NodeCount_WithGridId(fid)
count = cg_iRIC_Read_Grid_NodeCount_WithGridId(fid, gid)
引数
----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ids に、セルの数 x 3 のサイズの配列を渡すと、 1, 2, 3 番目,
---------------
.. code-block:: python
ids = cg_iRIC_Read_Grid_TriangleElements_WithGridId(fid)
ids = cg_iRIC_Read_Grid_TriangleElements_WithGridId(fid, gid)
引数
----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ cg_iric_write_sol_particlegroup_groupend_withgridid
---------------
.. code-block:: c
ier = cg_iRIC_Write_Sol_ParticleGroup_GroupEnd_WithGridId(fid);
ier = cg_iRIC_Write_Sol_ParticleGroup_GroupEnd_WithGridId(fid, gid);
形式 (Python)
---------------
.. code-block:: python
cg_iRIC_Write_Sol_ParticleGroup_GroupEnd_WithGridId(fid)
cg_iRIC_Write_Sol_ParticleGroup_GroupEnd_WithGridId(fid, gid)
引数
----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ cg_iric_write_sol_polydata_groupend_withgridid
---------------
.. code-block:: c
ier = cg_iRIC_Write_Sol_PolyData_GroupEnd_WithGridId(fid);
ier = cg_iRIC_Write_Sol_PolyData_GroupEnd_WithGridId(fid, gid);
形式 (Python)
---------------
.. code-block:: python
cg_iRIC_Write_Sol_PolyData_GroupEnd_WithGridId(fid)
cg_iRIC_Write_Sol_PolyData_GroupEnd_WithGridId(fid, gid)
引数
----
Expand Down

0 comments on commit 4eb5750

Please sign in to comment.