Skip to content

Commit b58949b

Browse files
authored
add missing exports from docs (#8)
1 parent 11d3ed0 commit b58949b

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "VTKBase"
22
uuid = "4004b06d-e244-455f-a6ce-a5f9919cc534"
33
authors = ["Juan Ignacio Polanco <juan-ignacio.polanco@cnrs.fr>"]
4-
version = "1.0.0"
4+
version = "1.0.1"
55

66
[compat]
77
julia = "1.6"

src/VTKBase.jl

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ strings.
4343
"""
4444
struct VTKFieldData <: AbstractFieldData end
4545

46+
export VTKPointData, VTKCellData, VTKFieldData
47+
4648
# These are the VTK names associated to each data "location".
4749
node_type(::VTKPointData) = "PointData"
4850
node_type(::VTKCellData) = "CellData"

src/polydata.jl

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ end
4040

4141
import .PolyData
4242

43+
export PolyData
44+
4345
const PolyCell{T} = MeshCell{T} where {T <: PolyData.CellType}
4446

4547
Base.eltype(::Type{T}) where {T <: PolyCell} = cell_type(T)

0 commit comments

Comments
 (0)