File tree 4 files changed +8
-11
lines changed
4 files changed +8
-11
lines changed Original file line number Diff line number Diff line change 2
2
A python package to calculate the section properties of arbitrary reinforced concrete
3
3
sections.
4
4
"""
5
- __version__ = "0.2.3 "
5
+ __version__ = "0.3.0 "
Original file line number Diff line number Diff line change @@ -358,7 +358,7 @@ def add_bar(
358
358
x : float ,
359
359
y : float ,
360
360
n : int = 4 ,
361
- ) -> Union [ CompoundGeometry ]: # type: ignore
361
+ ) -> CompoundGeometry :
362
362
"""Adds a reinforcing bar to a *sectionproperties* geometry.
363
363
364
364
Bars are discretised by four points by default.
@@ -391,7 +391,7 @@ def add_bar_rectangular_array(
391
391
anchor : Tuple [float , float ] = (0 , 0 ),
392
392
exterior_only : bool = False ,
393
393
n : int = 4 ,
394
- ) -> Union [ CompoundGeometry ]: # type: ignore
394
+ ) -> CompoundGeometry :
395
395
"""Adds a rectangular array of reinforcing bars to a *sectionproperties* geometry.
396
396
397
397
Bars are discretised by four points by default.
@@ -440,7 +440,7 @@ def add_bar_circular_array(
440
440
theta_0 : float = 0 ,
441
441
ctr : Tuple [float , float ] = (0 , 0 ),
442
442
n : int = 4 ,
443
- ) -> Union [ CompoundGeometry ]: # type: ignore
443
+ ) -> CompoundGeometry :
444
444
"""Adds a circular array of reinforcing bars to a *sectionproperties* geometry.
445
445
446
446
Bars are discretised by four points by default.
Original file line number Diff line number Diff line change 3
3
"version" : " latest" ,
4
4
"url" : " https://robbievanleeuwen.github.io/concrete-properties/"
5
5
},
6
+ {
7
+ "version" : " 0.3.0" ,
8
+ "url" : " https://robbievanleeuwen.github.io/concrete-properties/0.3.0"
9
+ },
6
10
{
7
11
"version" : " 0.2.3" ,
8
12
"url" : " https://robbievanleeuwen.github.io/concrete-properties/0.2.3"
Original file line number Diff line number Diff line change 1
1
# POST-RELEASE ITEMS
2
- - [ ] Speed up
3
- - [ ] Profiling
4
- - [ ] Clean up all the na_local, points_na etc. etc.
5
- - [ ] Double calculations etc.?
6
- - [ ] General refactoring
7
2
- [ ] Add prestressing
8
- - [x] Docs version control
9
- - [x] Start to add design codes
10
3
- [ ] More tests!
11
4
12
5
# Version Instructions
You can’t perform that action at this time.
0 commit comments