Questions tagged [rotor]

17 questions
6
votes
4 answers

raku What is a better way to do rotor from the end?

If data at the end of a list are more important, and I want :partial list to be left at the beginning of the list while preserving the initial order, I do this: > my @a = (0,1,2,3,4,5,6,7,8,9); [0 1 2 3 4 5 6 7 8 9] > say @a.rotor(4, :partial) ((0 1…
lisprogtor
  • 5,677
  • 11
  • 17
4
votes
2 answers

iOS 13 Voiceover issue, rotor action not working with embedded links

We have implemented the voiceover functionality in our app for the custom alert view which contains the UITextView. This UITextView has the links and we have also added the correct LinkAttributes for the links. in iOS 12 its working fine, using…
aniket.ghode
  • 86
  • 1
  • 9
3
votes
1 answer

Create a custom VoiceOver Rotor to navigate MKAnnotationViews?

I plot several MKAnnotations on an MKMapView. I'd like VoiceOver users to be able to continue panning/zooming a map as they normally would, but I'd also like them to to be able to quickly and easily navigate through my MKAnnotations if they choose.…
djibouti33
  • 12,102
  • 9
  • 83
  • 116
3
votes
1 answer

What does @ mean in a match statement?

I've started to study the rotor library and I've found the expression: me @ Echo::Server(..) => me.accept(), What does this mean and how do I use the @ operator? My guess is that it is something like a cast operation, but the Rust book's section…
Sergey
  • 145
  • 1
  • 6
3
votes
2 answers

Is there a version of Rotor for .NET 3.5? If so, where?

Is there a version of Rotor for .NET 3.5? If so, where?
Damian Powell
  • 8,655
  • 7
  • 48
  • 58
2
votes
1 answer

How can I make text orbit along a circular path using HTML5 Canvas?

There are a number of JavaScript snippets that will make text or graphics travel along a circular path with the letters or words always upright. Example: http://www.dseffects.com/f_scripts.html I want to have text (or graphics) orbit a point the…
2
votes
3 answers

What is the difference between SSCLI 2.0 (ROTOR) and .NET?

Is there a large difference between the SSCLI 2.0 and .NET, I know that Microsoft wouldn't release their garbage collector or JIT compiler and simpler implementations are used, but as far as the rest is concerned is there much difference?
Euclid
  • 880
  • 10
  • 24
2
votes
1 answer

iOS Voice Over rotor notifications?

One of the Voice Over rotor options is typing mode. When the typing mode is standard, you touch a key to hear what the key does and you have to double tap it to actually use it. When the typing mode is touch typing, the keyboard behaves almost as if…
Alex
  • 178
  • 2
  • 9
1
vote
1 answer

Accessibility Rotor changed behavior under iOS 16

) I'm building an app for a community of blind people. For app navigation the accessibility rotor is a very important feature. It's used for easy navigating through links. Since iOS 16 the rotor doesn't show any links in my app. Are there any…
Michael
  • 616
  • 5
  • 20
1
vote
0 answers

How to delete uiAccessibility voice over custom rotors

We use a complex calendar screen. (Best is to rewrite everything, but that is unfortunate not an option now). This screen allows to switch between a day overview, a week overview and a month overview. Depending on the view we want to have different…
Lex
  • 166
  • 1
  • 5
1
vote
1 answer

What is DiscardableAttribute used for?

I can not find the practical use of System.Runtime.CompilerServices.DiscardableAttribute, even for a prototype compiler. Any insight? Thanks.
aracntido
  • 253
  • 3
  • 6
1
vote
1 answer

How to add UIAccessibilityTraitHeader properly?

I am working with objective-c/swift and interface builder trying to make my application navigation accessible. I cannot figure out how to get my header to work when you use the accessibility rotor and select "headings." My heading title is set in…
Nick
  • 11
  • 3
1
vote
1 answer

How to implement rotor with auto-text for my custom input method in VoiceOver?

I develop a input method. I want to let the blind to use it easily. I know screen reader that is installed in IOS called VoiceOver. Blinds can you rotor item "auto-text" to make selection of candidate list item. But I don't know how to do. How…
1
vote
0 answers

Extra line drawn in Flotchart using TickRotor plugin

I am trying to create a stacked bar chart using FlotChart. My challenge is to create a multiple x-axis labels up to 5 layers. So, I tried to use TickRotor plugin (initially because I wanted to rotate the labels vertically). Now, I wanted to draw…
Kim Honoridez
  • 917
  • 2
  • 15
  • 28
1
vote
1 answer

Interchange the Y and Z axis in 3D- isosurface plot

The last few days I'm having trouble trying to interchange the Y- and Z- axis on a 3D- isosurface plot. I want to interchange the Y- and Z-axis in order to visualise it and to be able to discuss the result more clearly. I remember that in the past I…
1
2