comparison src/th06/std_vm.rs @ 716:5016c09e5d7c

Fix some warnings.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Mon, 23 Sep 2019 13:49:07 +0200
parents 377c241be559
children
comparison
equal deleted inserted replaced
715:2b2376811f46 716:5016c09e5d7c
1 //! Interpreter of STD files. 1 //! Interpreter of STD files.
2 2
3 use crate::th06::std::{Stage, Position, Call, Instruction}; 3 use crate::th06::std::{Stage, Call, Instruction};
4 use crate::th06::interpolator::{Interpolator1, Interpolator3, Interpolator4, Formula}; 4 use crate::th06::interpolator::{Interpolator3, Formula};
5 use crate::util::math::{Mat4, perspective, setup_camera}; 5 use crate::util::math::{Mat4, setup_camera};
6 use std::cell::RefCell; 6 use std::cell::RefCell;
7 use std::rc::Rc; 7 use std::rc::Rc;
8 8
9 /// Interpreter for Stage. 9 /// Interpreter for Stage.
10 pub struct StageRunner { 10 pub struct StageRunner {