···2525}
26262727impl DistributionType {
2828- #[deprecated(note = "Experimental. Does not consider random or limit in filter calculations.")]
2828+ #[deprecated(note = "Experimental. Does not consider random in filter calculations.")]
2929 #[allow(deprecated)]
3030 fn compute_beat_offset(
3131 &self,
···5555 )
5656 }
57575858- #[deprecated(note = "Experimental. Does not consider random or limit in filter calculations.")]
5858+ #[deprecated(note = "Experimental. Does not consider random in filter calculations.")]
5959 #[allow(deprecated)]
6060 fn compute_value_offset(
6161 &self,
···8585 )
8686 }
87878888- #[deprecated(note = "Experimental. Does not consider random or limit in filter calculations.")]
8888+ #[deprecated(note = "Experimental. Does not consider random in filter calculations.")]
8989 #[allow(deprecated)]
9090 #[inline(always)]
9191 fn compute_offset(
+4-4
src/difficulty/lightshow/filter.rs
···7878 /// Will panic if the light ID is greater than or equal to the group size.
7979 #[must_use]
8080 #[inline]
8181- #[deprecated(note = "Experimental. Does not consider random or limit in calculations.")]
8181+ #[deprecated(note = "Experimental. Does not consider random in calculations.")]
8282 pub fn is_in_filter(&self, mut light_id: i32, mut group_size: i32) -> bool {
8383 assert!(light_id < group_size);
8484···122122 /// If the [`FilterType`] is `Unknown` then the result will be the same as `group_size`.
123123 #[must_use]
124124 #[inline]
125125- #[deprecated(note = "Experimental. Does not consider random or limit in calculations.")]
125125+ #[deprecated(note = "Experimental. Does not consider random in calculations.")]
126126 pub(crate) fn count_filtered_without_limit(&self, mut group_size: i32) -> i32 {
127127 if let Some(chunks) = self.chunks
128128 && chunks > 0
···149149 /// If the [`FilterType`] is `Unknown` then the result will be the same as `group_size`.
150150 #[must_use]
151151 #[inline]
152152- #[deprecated(note = "Experimental. Does not consider random or limit in calculations.")]
152152+ #[deprecated(note = "Experimental. Does not consider random in calculations.")]
153153 #[allow(deprecated)]
154154 pub fn count_filtered(&self, group_size: i32) -> i32 {
155155 let filtered = self.count_filtered_without_limit(group_size);
···170170 // Todo what is the behaviour when the light ID is not in the filter?
171171 #[must_use]
172172 #[inline]
173173- #[deprecated(note = "Experimental. Does not consider random or limit in calculations.")]
173173+ #[deprecated(note = "Experimental. Does not consider random in calculations.")]
174174 pub fn get_relative_index(&self, mut light_id: i32, mut group_size: i32) -> i32 {
175175 assert!(light_id < group_size);
176176
+2-2
src/difficulty/lightshow/group.rs
···4444 /// Returns the number of beats that the event will be offset for a given light ID.
4545 /// # Panics
4646 /// Will panic if the light ID is greater than or equal to the group size.
4747- #[deprecated(note = "Experimental. Does not consider random or limit in filter calculations.")]
4747+ #[deprecated(note = "Experimental. Does not consider random in filter calculations.")]
4848 fn get_beat_offset(&self, light_id: i32, group_size: i32) -> f32;
49495050 /// Returns the value (i.e. brightness) that the event will be offset for a given light ID.
5151 /// # Panics
5252 /// Will panic if the light ID is greater than or equal to the group size.
5353- #[deprecated(note = "Experimental. Does not consider random or limit in filter calculations.")]
5353+ #[deprecated(note = "Experimental. Does not consider random in filter calculations.")]
5454 fn get_value_offset(&self, light_id: i32, group_size: i32) -> f32;
5555}
5656
+1-1
src/difficulty/lightshow/group/color.rs
···9393 /// Returns the brightness that the event will be offset for a given light ID.
9494 /// # Panics
9595 /// Will panic if the light ID is greater than or equal to the group size.
9696- #[deprecated(note = "Experimental. Does not consider random or limit in filter calculations.")]
9696+ #[deprecated(note = "Experimental. Does not consider random in filter calculations.")]
9797 #[allow(deprecated)]
9898 pub fn get_brightness_offset(&self, light_id: i32, group_size: i32) -> f32 {
9999 self.bright_dist_type.compute_value_offset(
+1-1
src/difficulty/lightshow/group/rotation.rs
···101101 /// Returns the number of degrees that the event will be offset for a given light ID.
102102 /// # Panics
103103 /// Will panic if the light ID is greater than or equal to the group size.
104104- #[deprecated(note = "Experimental. Does not consider random or limit in filter calculations.")]
104104+ #[deprecated(note = "Experimental. Does not consider random in filter calculations.")]
105105 #[allow(deprecated)]
106106 pub fn get_rotation_offset(&self, light_id: i32, group_size: i32) -> f32 {
107107 self.rotation_dist_type.compute_value_offset(
+1-1
src/difficulty/lightshow/group/translation.rs
···107107 /// Returns the number of units that the event will be offset for a given light ID.
108108 /// # Panics
109109 /// Will panic if the light ID is greater than or equal to the group size.
110110- #[deprecated(note = "Experimental. Does not consider random or limit in filter calculations.")]
110110+ #[deprecated(note = "Experimental. Does not consider random in filter calculations.")]
111111 #[allow(deprecated)]
112112 pub fn get_translation_offset(&self, light_id: i32, group_size: i32) -> f32 {
113113 self.translation_dist_type.compute_value_offset(