1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use std::rc::Rc;
use std::cell::RefCell;

/// Data structure with vertex data and underlying GPU representation, shared among all instances.
pub struct Text {
    /// The string to be drawn
    pub data: &'static str,
    /// The vertex data
    pub position: [i32; 2],
    /// The color to draw the text with
    pub color: [f32; 4],
}

pub type TextHandle = Rc<RefCell<Text>>;

impl Text {
    /// Create a new instance of the text struct
    pub fn new(data: &'static str, position: [i32; 2], color: [f32; 4]) -> TextHandle {
        Rc::new(RefCell::new(Text {
            data,
            position,
            color,
        }))
    }
}