こちらの応募は終了しました、冬も募集予定です。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* wasapi_capture_and_render.cpp | |
* | |
* Created by fukuroda (https://github.com/fukuroder) | |
*/ | |
// STL | |
#include <iostream> | |
#include <vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BOOL canRecordScreen = YES; | |
if (@available(macOS 10.15, *)) { | |
canRecordScreen = NO; | |
NSRunningApplication *runningApplication = NSRunningApplication.currentApplication; | |
NSNumber *ourProcessIdentifier = [NSNumber numberWithInteger:runningApplication.processIdentifier]; | |
CFArrayRef windowList = CGWindowListCopyWindowInfo(kCGWindowListOptionOnScreenOnly, kCGNullWindowID); | |
NSUInteger numberOfWindows = CFArrayGetCount(windowList); | |
for (int index = 0; index < numberOfWindows; index++) { | |
// get information for each window |
日時: | 2022-12-10 |
---|---|
作: | 時雨堂 |
バージョン: | 2022.1 |
URL: | https://github.com/OpenAyame |
このプロジェクトに興味がある人はこの資料や GitHub リポジトリ に Star をつけてもらえると嬉しいです。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
THEME | FORMAT | SOURCE | LINK | |
---|---|---|---|---|
roads, waterways, building footprints, points of interest | shp, pbf | OpenStreetMap (OSM) | http://download.geofabrik.de/asia/philippines.html | |
administrative boundaries (country, region, province, municipality, city) | shp | PSA, NAMRIA, DROMIC, UNOCHA, and patners | https://data.humdata.org/dataset/philippines-administrative-levels-0-to-3 | |
administrative boundaries (barangay) | shp | PSA, NAMRIA, DROMIC, UNOCHA, and patners | https://data.humdata.org/dataset/philippines-admin4-boundaries-barangay | |
framework data (boundaries, roads, elevation, population, etc.) | various | DIVA-GIS | http://www.diva-gis.org/gdata | |
topographic maps (1:50,000 and 1:250,000) | non-georeferenced raster | NAMRIA | http://www.namria.gov.ph/download.php | |
various geohazards | shp | NOAH | http://noah.up.edu.ph/downloads/ | |
various geohazards | shp | DREAM | https://lipad.dream.upd.edu.ph/ | |
various geohazards | shp | MGB | http://www.namria.gov.ph/download.php | |
various geohazards | shp | PHIVOLCS | http://www.phivolcs.dost.gov.ph/ |
日時: | 2024-02-01 |
---|---|
作: | 時雨堂 |
資料 バージョン: | 2024.1 |
GitHub URL: | https://github.com/shiguredo/momo |
製品 URL: | https://momo.shiguredo.jp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEngine.UI; | |
using System.Collections.Generic; | |
public class UILineRenderer : Graphic | |
{ | |
[SerializeField] Texture m_Texture; | |
[SerializeField] Rect m_UVRect = new Rect(0f, 0f, 1f, 1f); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* 平行光源の光の強さは、光源の方向のみに依存するので、各頂点の明るさは、法線 n と、光源の方向 l の内積(の関数)になります。 | |
* 反射光の光の強さは、ライトベクトルと視線への反射ベクトルのハーフベクトルと面法線の内積で計算します。 | |
* 環境光は計算量が多いので、単に色を乗せるだけで済ませます。 | |
※ライトベクトルおよび視線の反射ベクトルは、モデルの回転に対する逆行列を掛けることで正しく表示されます。 | |
ライトが固定して、ポリゴンが回る=ポリゴンを固定して、ライトを逆方向に回す | |
``` | |
<script id="vs" type="x-shader/x-vertex"> | |
attribute vec3 position; // 頂点属性:頂点座標位置 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/***************************************************************************** | |
* directsound.c: DirectSound audio output plugin for VLC | |
***************************************************************************** | |
* Copyright (C) 2001-2009 VLC authors and VideoLAN | |
* $Id: 2f5b9f46d3739e513d875b950eaf4d2df641f9dc $ | |
* | |
* Authors: Gildas Bazin <[email protected]> | |
* | |
* This program is free software; you can redistribute it and/or modify it | |
* under the terms of the GNU Lesser General Public License as published by |
NewerOlder