mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Merge pull request #365 from revarbat/revarbat_dev
Added hover-text for argument tables.
This commit is contained in:
commit
3712de6c58
3 changed files with 3 additions and 29 deletions
|
@ -1,26 +0,0 @@
|
|||
Cpi PI
|
||||
hypot3 norm([x,y,z])
|
||||
distance norm(p2-p1)
|
||||
cdr slice(list, 1, -1)
|
||||
wrap_range select()
|
||||
vector2d_angle vector_angle()
|
||||
vector3d_angle vector_angle()
|
||||
rotate_points3d_around_axis rotate_points3d(pts, v=ang, axis=u, cp=cp)
|
||||
cube2pt cuboid(p1, p2)
|
||||
span_cube cuboid(p1, p2)
|
||||
offsetcube cuboid(..., align)
|
||||
chamfcube cuboid(..., chamfer, edges, trimcorners)
|
||||
rrect cuboid(..., fillet, edges)
|
||||
rcube cuboid(..., fillet)
|
||||
trapezoid prismoid()
|
||||
pyramid cyl(..., r2=0, $fn=N)
|
||||
prism cyl(..., $fn=N)
|
||||
chamferred_cylinder cyl(..., chamfer)
|
||||
chamf_cyl cyl(..., chamfer)
|
||||
filleted_cylinder cyl(..., fillet)
|
||||
rcylinder cyl(..., fillet)
|
||||
thinning_brace thinning_triangle(..., diagonly=true)
|
||||
translate_copies place_copies()
|
||||
line_of spread(p1, p2)
|
||||
grid_of grid3d()
|
||||
|
|
@ -576,7 +576,7 @@ class LeafNode(object):
|
|||
out.append("")
|
||||
if self.arguments:
|
||||
out.append("**Arguments:**")
|
||||
out.append("By Position | What it does")
|
||||
out.append('<abbr title="These args can be used by position or by name.">By Position</abbr> | What it does')
|
||||
out.append("---------------- | ------------------------------")
|
||||
for argname, argdesc in self.arguments:
|
||||
argname = argname.replace(" / ", "` / `")
|
||||
|
@ -588,7 +588,7 @@ class LeafNode(object):
|
|||
)
|
||||
out.append("")
|
||||
if self.named_arguments:
|
||||
out.append("By Name | What it does")
|
||||
out.append('<abbr title="These args must be used by name, ie: name=value">By Name</abbr> | What it does')
|
||||
out.append("-------------- | ------------------------------")
|
||||
for argname, argdesc in self.named_arguments:
|
||||
argname = argname.replace(" / ", "` / `")
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
BOSL_VERSION = [2,0,511];
|
||||
BOSL_VERSION = [2,0,512];
|
||||
|
||||
|
||||
// Section: BOSL Library Version Functions
|
||||
|
|
Loading…
Reference in a new issue