⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sglfont2.f90

📁 Fortran 95程序设计&Code-彭国伦
💻 F90
字号:
module SGL_UTIL
  use SGL
  implicit none
contains
  subroutine display()
    call sglClearColor3i(255,255,255)
    call sglClearBuffer()
	call sglColor3i(0,0,0)
	call sglTextOut(50,50,"大家好")
	call sglUpdateBuffer()
  end subroutine
end module SGL_UTIL

program main
  use SGL_UTIL
  implicit none

  call sglDisplaySub(display)
  call sglCreateWindow(100,100,400,200,1)
  call sglUseFont("标楷体",50,100)
  !call sglUseFont("Time New Roman",50,100)
  call sglMainLoop()

  stop
end program

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -