Skip to content
Snippets Groups Projects
Select Git revision
  • 10a6ed64721a041eb0492f806fc2ced879ee7862
  • 5.4 default protected
  • 5.5
  • dev/5.5
  • dev/5.4
  • dev/5.6
  • dev/5.3_downgrade
  • feature/experimenttime_hack
  • 5.3 protected
  • _IntenSelect5.3
  • IntenSelect5.3
  • 4.27 protected
  • 4.26 protected
  • 5.0 protected
  • 4.22 protected
  • 4.21 protected
  • UE5.4-2024.1
  • UE5.5-1
  • UE5.4-2024.1-rc1
  • UE5.3-2023.1-rc3
  • UE5.3-2023.1-rc2
  • UE5.3-2023.1-rc
22 results

VirtualRealityPawn.cpp

Blame
  • welcome.ts 753 B
    import data from "@/data/test.json";
    
    import * as d3 from "d3";
    
    export function getMessage(): string {
        return data.message;
    }
    
    export function drawSmiley() {
        const svg = d3.select("#smiley");
    
        svg.append("circle")
            .attr("cx", 50)
            .attr("cy", 50)
            .attr("r", 40)
            .attr("fill", "yellow");
    
        svg.append("circle")
            .attr("cx", 30)
            .attr("cy", 30)
            .attr("r", 5)
            .attr("fill", "black");
    
        svg.append("circle")
            .attr("cx", 70)
            .attr("cy", 30)
            .attr("r", 5)
            .attr("fill", "black");
    
        svg.append("path")
            .attr("d", "M 30 60 Q 50 80 70 60")
            .attr("stroke", "black")
            .attr("stroke-width", 2)
            .attr("fill", "none");
    }