File: obj-output.rs

package info (click to toggle)
thunderbird 1%3A115.16.0esr-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,476,252 kB
  • sloc: cpp: 6,972,150; javascript: 5,209,211; ansic: 3,507,222; python: 1,137,609; asm: 432,531; xml: 205,149; java: 175,761; sh: 116,485; makefile: 22,152; perl: 13,971; objc: 12,561; yacc: 4,583; pascal: 2,840; lex: 1,720; ruby: 1,075; exp: 762; sql: 666; awk: 580; php: 436; lisp: 430; sed: 70; csh: 10
file content (26 lines) | stat: -rw-r--r-- 779 bytes parent folder | download | duplicates (4)
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
26
// Output an .obj file of the generated mesh. Viewable at https://3dviewer.net/

fn output_obj_file(data: &[OutputVertex]) {
        for v in data {
                let color = v.coverage;
                println!("v {} {} {} {} {} {}", v.x, v.y, 0., color, color, color);
        }

        // output a standard triangle strip face list
        for n in (1..data.len()-1).step_by(3) {
                println!("f {} {} {}", n, n+1, n+2);
        }
}

use wpf_gpu_raster::{PathBuilder, OutputVertex};
fn main() {
    let mut p = PathBuilder::new();
    p.move_to(10., 10.0);
    p.line_to(30., 10.);
    p.line_to(50., 20.);
    p.line_to(30., 30.);
    p.line_to(10., 30.);
    p.close();
    let result = p.rasterize_to_tri_list(0, 0, 100, 100);
    output_obj_file(&result)
}