Skip to content

Commit c0eb93b

Browse files
committed
removed confusin detail of frpanimated
1 parent e01a0b5 commit c0eb93b

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

_chapters/frpanimated.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,6 @@ This page will support the workshop solutions with a worked example of how we ca
1010

1111
## Animation Generation
1212

13-
rxviz.com was used to create the visualizations below.
14-
15-
Here is a neat function allowing us to add a delay to an Observable stream for visualization purposes.
16-
17-
```typescript
18-
const addDelay =
19-
<T>(time : number) =>
20-
(obs : Observable<T>) => // zipping the interval stream with the given observable
21-
zip(interval(time), obs) // so that they are emitted at a controlled rate.
22-
.pipe(map(([[_,e]) => e)) // Just emit the elements from the original stream (ignore the output of interval)
23-
```
24-
2513
Consider, the definitions for ranks, suits and card, as per the workshop:
2614

2715
```typescript

0 commit comments

Comments
 (0)