@@ -83,18 +83,6 @@ export interface StackOptions {
83
83
* applied.
84
84
*/
85
85
export function stackX < T > ( options ?: T & StackOptions ) : Transformed < T > ;
86
-
87
- /**
88
- * Transforms a length channel *x* into starting and ending position channels
89
- * *x1* and *x2* by “stacking” elements that share a given *y* position. The
90
- * starting position of each element equals the ending position of the preceding
91
- * element in the stack. Non-positive values are stacked to the left of zero,
92
- * with *x2* to the left of *x1*. A new *x* channel is derived that represents
93
- * the midpoint between *x1* and *x2*, for example to place a label. If not
94
- * specified, the input channel *x* defaults to the constant one. Elements can
95
- * be stacked in a given *order*. After stacking, an optional *offset* can be
96
- * applied.
97
- */
98
86
export function stackX < T > ( stackOptions ?: StackOptions , options ?: T ) : Transformed < T > ;
99
87
100
88
/**
@@ -103,12 +91,6 @@ export function stackX<T>(stackOptions?: StackOptions, options?: T): Transformed
103
91
* stack.
104
92
*/
105
93
export function stackX1 < T > ( options ?: T & StackOptions ) : Transformed < T > ;
106
-
107
- /**
108
- * Like **stackX**, but returns the starting position *x1* as the *x* channel,
109
- * for example to position a dot on the left-hand side of each element of a
110
- * stack.
111
- */
112
94
export function stackX1 < T > ( stackOptions ?: StackOptions , options ?: T ) : Transformed < T > ;
113
95
114
96
/**
@@ -117,12 +99,6 @@ export function stackX1<T>(stackOptions?: StackOptions, options?: T): Transforme
117
99
* stack.
118
100
*/
119
101
export function stackX2 < T > ( options ?: T & StackOptions ) : Transformed < T > ;
120
-
121
- /**
122
- * Like **stackX**, but returns the starting position *x2* as the *x* channel,
123
- * for example to position a dot on the right-hand side of each element of a
124
- * stack.
125
- */
126
102
export function stackX2 < T > ( stackOptions ?: StackOptions , options ?: T ) : Transformed < T > ;
127
103
128
104
/**
@@ -136,39 +112,18 @@ export function stackX2<T>(stackOptions?: StackOptions, options?: T): Transforme
136
112
* *order*. After stacking, an optional *offset* can be applied.
137
113
*/
138
114
export function stackY < T > ( options ?: T & StackOptions ) : Transformed < T > ;
139
-
140
- /**
141
- * Transforms a length channel *y* into starting and ending position channels
142
- * *y1* and *y2* by “stacking” elements that share a given *x* position. The
143
- * starting position of each element equals the ending position of the preceding
144
- * element in the stack. Non-positive values are stacked below zero, with *y2*
145
- * below *y1*. A new *y* channel is derived that represents the midpoint between
146
- * *y1* and *y2*, for example to place a label. If not specified, the input
147
- * channel *y* defaults to the constant one. Elements can be stacked in a given
148
- * *order*. After stacking, an optional *offset* can be applied.
149
- */
150
115
export function stackY < T > ( stackOptions ?: StackOptions , options ?: T ) : Transformed < T > ;
151
116
152
117
/**
153
118
* Like **stackY**, but returns the starting position *y1* as the *y* channel,
154
119
* for example to position a dot at the bottom of each element of a stack.
155
120
*/
156
121
export function stackY1 < T > ( options ?: T & StackOptions ) : Transformed < T > ;
157
-
158
- /**
159
- * Like **stackY**, but returns the starting position *y1* as the *y* channel,
160
- * for example to position a dot at the bottom of each element of a stack.
161
- */
162
122
export function stackY1 < T > ( stackOptions ?: StackOptions , options ?: T ) : Transformed < T > ;
163
123
164
124
/**
165
125
* Like **stackY**, but returns the ending position *y2* as the *y* channel,
166
126
* for example to position a dot at the top of each element of a stack.
167
127
*/
168
128
export function stackY2 < T > ( options ?: T & StackOptions ) : Transformed < T > ;
169
-
170
- /**
171
- * Like **stackY**, but returns the ending position *y2* as the *y* channel,
172
- * for example to position a dot at the top of each element of a stack.
173
- */
174
129
export function stackY2 < T > ( stackOptions ?: StackOptions , options ?: T ) : Transformed < T > ;
0 commit comments