Skip to content

Commit

Permalink
update docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
jlchan committed Dec 9, 2023
1 parent 2c1105e commit 61ff4d4
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/RefElemData_polynomial.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,11 @@ end


"""
RefElemData(elem::Line, N;
RefElemData(elem::Line, approximation_type, N;
quad_rule_vol = quad_nodes(elem, N+1))
RefElemData(elem::Union{Tri, Quad}, N;
quad_rule_vol = quad_nodes(elem, N),
quad_rule_face = gauss_quad(0, 0, N))
RefElemData(elem::Union{Hex, Tet}, N;
quad_rule_vol = quad_nodes(elem, N),
quad_rule_face = quad_nodes(Quad(), N))
RefElemData(elem; N, kwargs...) # version with keyword args
RefElemData(elem, approximation_type, N;
quad_rule_vol = quad_nodes(elem, N),
quad_rule_face = quad_nodes(face_type(elem), N))
Constructor for `RefElemData` for different element types.
"""
Expand Down

0 comments on commit 61ff4d4

Please sign in to comment.