qtandroid graphvieww怎么更新场景

2603人阅读
OpenGL(74)
Qt新渲染底层Scene Graph研究(一)
&&&&&& Qt 5提出了一个新的渲染底层,以替代Qt4时期的Graphics View,这个渲染底层就是Scene Graph。其实这个底层的作用和Open Scene Graph是差不多的,但是由于是不同的团队进行开发的,所以两者没有必然的联系。Scene Graph主要利用OpenGL ( ES )2的渲染优势,在2D和3D以非常流畅的速度进行渲染,满足日益增长的界面效果需求,同时Scene Graph预留了各种各样的接口,满足大家定义显示和渲染效果的需要。
蒋彩阳原创文章,首发地址:。欢迎同行前来探讨。
&&&&&& 如果大家使用过Qt 5的Qt Quick模块,你会感觉QtQuick的画面渲染速度和效率比Qt 4的GraphicsView来说好很多。当然Qt Graphics View在指定OpenGL渲染context为OpenGL时,差距可能小一些,但也较为明显。这一块儿,主要在渲染部分精简了渲染堆栈,并且充分利用显卡加速,将渲染负担转移到GPU来进行,实现了负载均衡。由于Scene Graph是直接构建在OpenGL之上的,因此Scene Graph对于OpenGL开发者来说要熟悉一些,而从来没有接触过OpenGL开发的开发者就有些为难了,幸好Qt在其之上有QQuickPaintedItem等方便的类,它可以像QPainter那样对其进行渲染操作。当然源码对于这一部分的操作是极其复杂的,需要考虑很多情况,幸运的是这一部分运行起来很快,不会占用很长的渲染时间。而且对于库的使用者来说,相当轻松。
&&&&&& 使用Qt的Scene Graph来开发应用,为了提升性能,要点是批量渲染。这是由OpenGL的特性决定的,因为通过OpenGL,将以往CPU串行的部分并行化,从而大大提升渲染效率,再加上OpenGL本质上是一个巨大的状态机,在进行批量渲染的时候,可以有效地减少OpenGL状态切换所带来的性能开销,同时OpenGL预留的一些状态,需要开发者有基本的认知,由于OpenGL是一个开放的标准,因此考虑到兼容性,其采用了C/S架构。C端即CPU部分,S端对应GPU。在顶点和纹理数据从C端传入S端之前,会在C端形成一个缓冲区(一说缓存),我们常说的VBO、FBO和PBO就是这一类缓冲区。正确地设置缓冲区的数量和大小,可以为应用程序的性能提升带来很大的帮助。
&&&&&& Qt的Scene Graph在Qt 5.1到Qt5.2时有一个质的飞跃,因为其内部采用了新的Scene Graph渲染器。在Qt中,渲染器是可以替换的,所以说Qt 5.1之前采用的渲染器和Qt 5.2采用的渲染器是很不一样的。,测试表明,OpenGL的API调用次数得到了显著的降低。其中采用了很多先进的思想比如说纹理图集(TextureAtlas)。一句话,Scene
Graph总体的目标就是批量、批量再批量。
&&&&&& 最后,介绍一下如何使用环境变量来进行对Qt的Scene Graph进行可视化检测。Qt的Scene Graph通过QSG_VISUALIZE来检测其渲染。
1、 测试批量渲染
通过指定QSG_VISUALIZE=batches来检查批量渲染情况,相同颜色标明其作了批量渲染。场景的颜色数越少,批量渲染就越好,渲染的效率就越高。
2、 测试裁剪情况
通过指定QSG_VISUALIZE=clip来检查裁剪情况。因为Item有一个clip的选项,如果打开的话,那么会通过较鲜艳的红色斜线显示出来。图中左上角的图像表示设置了Item::clip = true。
3、 测试全景绘制效果
这是一个非常直观且非常炫的效果。通过指定QSG_VISUALIZE=overdraw来检查在三维视图中各个图元的显示情况。所显示的图元都集中在x∈[0,Screen.width],y∈[0,Screen.height],z∈[0,stackLayer](其中stackLayer为Item堆叠的个数)的立方体中。如果发现自己创建的Item没有在视口中显示,看看在这种情况是不是跑到视口外面去了呢。
&&&&&&& 所用的程序均来自我制作的全平台独立游戏《十日驱鬼记》。下载链接参见:
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:730665次
积分:11117
积分:11117
排名:第975名
原创:290篇
评论:948条
Qt上海开发联盟,欢迎您的加入!
我的第一款由Qt制作的独立游戏《吃药了》
Google Play下载地址:
App Store下载地址:
Windows Phone Store下载地址:
Windows下载地址:(提取码:6d6f)
360下载地址:
91下载地址:
应用宝下载地址:
Qt游戏第II作《十日驱鬼记》,现已开始发布!
Google Play下载地址:
App Store下载地址:
Windows Phone Store下载地址:
Windows下载地址:(提取码:01df)
360下载地址:
91下载地址:
应用宝下载地址:
文章:11篇
阅读:19818
文章:17篇
阅读:51454
文章:14篇
阅读:31256
文章:12篇
阅读:30079
文章:50篇
阅读:185243
文章:42篇
阅读:159915
(2)(2)(1)(1)(1)(1)(1)(5)(2)(2)(3)(4)(2)(8)(3)(6)(5)(8)(7)(4)(2)(2)(3)(3)(3)(11)(1)(3)(7)(5)(7)(5)(15)(5)(4)(7)(2)(1)(3)(5)(6)(5)(5)(13)(4)(5)(2)(3)(1)(4)(6)(2)(1)(1)(1)(4)(2)(4)(2)(13)(7)(10)(10)(9)(7)(4)请教怎么把graphivsScene的(0,0)点位置放到graphicsView的的左下角 - QT开发当前位置:& &&&请教怎么把graphivsScene的(0,0)点位置放到graph请教怎么把graphivsScene的(0,0)点位置放到graphicsView的的左下角&&网友分享于:&&浏览:14次请问如何把graphivsScene的(0,0)点位置放到graphicsView的的左上角我添加了一个item,然后调用item.setpos(0,0)后发现,这个item在view的中间。所以我想把scene的原点设置到view的左上角应该就可以了。可是怎么弄呢?scene貌似没用setpos函数------最佳解决方案--------------------试试setSceneRect------其他解决方案--------------------建议最好设置Graphicsitem的摆放位置
12345678910
12345678910
12345678910 上一篇:下一篇:文章评论相关解决方案 12345678910 Copyright & &&版权所有Github新项目快报() - 应用自动静默更新安装库.
数据来源:
应用自动静默更新安装库.
1000个PHP代码审计案例(2016.7以前乌云公开漏洞)
Uses Python API for Pokemon Go to mass transfer Pokemon
A Node.js website boilerplate that satisfies some common website requirements.
Objective-C25
集成环信3.0,自己写的,对键盘处理,跟微信键盘,弹出,隐藏,还有输入非常像,但是没有封装
Easy the job, for everyone love us :)
JavaScript22
Build real RESTful APIs without writing one line of code.
Pokemon Go API PHP library
The x86 Script Instruction Virtual Machine
PokeServer is a Pokemon GO server implementation, written in Golang.
JavaScript9
Titanium Widget to display a search bar.
Expandable TableView in swift (similar to expandable ListView in Android)
JavaScript7
Comparing different ways to style components
Objective-C6
iOS-UIFontFamilyNamesPreview
JavaScript6
A simple component to display a guideline grid according to Rule of thirds
推特分布式id生成算法
JavaScript5
swipe javascript ui component
Jupyter Notebook5
A data model for doing geospatial analysis and regular analytics on Pokemon Go data.
PokiiMap is (yet another) an Android app to help you san for pokemons in a map, because it's really important to catch'em all!
simple tool to read the iv values of all your pokemon (+some extras)
Connecting Programmers and Visionaries since 2016
动态分类搜索
An example-heavy presentation on javascript geoprocessing
JavaScript4
A configurable web client for geo-applications. Uses OpenLayers 3. Suitable for mobile devices.
Speed up Cydia installations
A simple pure circular progress bar
桌面悬浮小宠物
Q群聊天记录爆照图片查找
JavaScript4
Convert from cURL command to YAML format. Compatible with Swagger.
A C++11 variant type which prevents undesirable implicit conversions
Core utility classes for repetitive RecyclerView work.
A set of useful Laravel collection macros
JavaScript4
MarkdownView is an Android webview with the capability of loading Markdown text or file and display it as HTML, it extends Android webview.
添加动画按钮和标签viewlayout
Console application to manage deep neural network trainings in AETROS Trainer
VNC Protocol Honeypot
Objective-C3
HTStyle - HTView - HTButton...
android 多线程断点续传下载框架,简单易用
Send system notification when long running commands finish in the background
JavaScript3
A search parser module for Guide4You.
JavaScript3
A urlapi module for Guide4You.
JavaScript3
Control Raspberry Pi GPIO pins with node.js. Fast and easy to use.
The demo to show off the FCM works on background. I added the native php script to test.
Bot for logging Slack messages
Protocol Buffer3
Probably the most efficient large area long duration tracker for pokemon go data mining
An early prototype of Apollo client for iOS, written in Swift
A Universal Windows App for controlling the Anne Pro Bluetooth enabled keyboard.
JavaScript3
A builder for Guide4You.
Data yang dihasilkan bersumber dari data.kpu.go.id
掘金文章爬虫
Remotely manage your translations on iOS
The first devtools plugin for Nukkit!
Custom scrollbar using pure javascript
ConstraintLayout约束布局的概念与使用
Export PlexPy stats to InfluxDB
Objective-C3
SpringBoard Headers for iOS 9.3
A beautiful, Customizable Android Multi ProgressBar.
PowerShell3
Pester/OVF module to test Windows server operation
Objective-C3
fir 版本自动检测,有新版本弹 Alert 前往更新
JavaScript3
Showcase for CSS Secrets, using reveal.js + Web Component Templates + Shadow DOM
Chef-Provisioning用外部ツール
JavaScript3
Source code of
Examine Python stack traces on Linux using the magic of ptrace(2).
A simple demo for CAGradientLayer in iOS
JavaScript3
Let's you query for Pokemon on Pokemon Go via SMS
IoTbot: Controlling and Integrating the GoPiGo Raspberry Pi robot with AWS IoT using Node.js, Android and Amazon Echo
Objective-C2
转场动画+刮奖卡
Open source version
JavaScript2
Gulp plugin for the `layouts` library, which provides a simple way of "wrapping" a string with common code or content.
A Raspberry Pi Hacker Tools suite
Laravel package to normalize your data before saving into the database.
A Known plugin to clean up the URLs displayed in the profile page. Also adds some additional icons.
Objective-C2
This is the AreaMetrics iOS SDK public repository. It contains the framework for use either directly, or via cocoapods.
JavaScript2
A JavaScript library to preview images before uploading them
JavaScript2
A simple boilerplate for angular 1.x and webpack
sendcloud rails api
support ios && android qrcode scan
微信公众号demo,基于weixin-java-tools,使用Spring MVC框架,支持多公众号
JavaScript2
Module manager for Vue.js and Vuex
JavaScript2
[WIP] Fractal :heart: Jekyll ?
Force files to have no BOM via GrumPHP
The first anti X-Ray plugin in PocketMine!
Sakura is a single SCSS file include two mixins: one for standalone cards, and one for card collections using flexbox.
JavaScript2
If you use react and css-modules, it allows you to use multiple class names, and you can set whether to display the style
Datalog implementation in OCaml
JavaScript2
Fast, declarative, standards-based JavaScript (ES6) data modeling & manipulation
CM13 vendor tree for Elephone P9000
Animal genetics and breeding
Julia package for doing arithmetic on endpoints in array indexing
An R package to check the accuracy of geocoded coordinates using a Shiny gadget
Objective-C2
一款仿QQ左侧抽屉效果,左侧有渐入和放大效果,供大家下载,欢迎大家提意见,谢谢
八行代码集成二维码扫描功能
a Android skin change Library(一个安卓皮肤切换库)
Objective-C2
JavaScript2
Round the corner of two line segments
Objective-C2
用来做筛选的控件,用法与TableView基本一致
类似‘今日头条顶部导航栏跟手势滑动’效果
烛龙 -- 基于Docker的环境快速搭建系统
Code from my testing workshops
:honeybee: Stash your Vim session using `git stash` before switching to another branch.
Julia's METADATA package registry stuffed into a SQLite database.
A simple salary calculator in Clojure
Gui for Pokemon Go (Auto transfer, powerup, evolve, and more...) :running:
Save your moments.
A Liquid snippet to generate markup for a dynamic navigation menu in Jekyll
JavaScript2
A factory for creating custom functional react loading screen components.
Encurtador de URLs
A Pokemon Go Bot based on FeroxRevs API
Objective-C2
An arduino sketch, that blinks 10 LEDs - In celebration of JanE's doctorate!
YForm Plugin für das Validieren von PHP Arrays ohne HTML-Formular
JavaScript2
YANC - Yes Another NodeJs Crawler
Control software for the boat
Easing function macros
JavaScript2
JSON REST server
Download chat messages from past broadcasts on Twitch
JavaScript2
Transport complex JavaScript objects from the server to the web browser at lightning fast speeds
Objective-C2
Agent is an app that remembers stuff via audio commands
Dump & Test webkit exploits for the Nintendo 3DS
Experimental pub-sub style abstraction of channel operations in Go.
MapPackageMaker creates an installation executable for minecraft maps.
Data Structures and Algorithm Analysis in Java (Second Edition)
Objective-C1
微信红包插件,实时抢红包并可以提示抢到的红包金额和红包总额度
Swift binding for LevelDB
Ghost + GhostScroll Theme + Docker
Kubernetes on Openstack lab environment. A complete bare-metal cloud-in-a-box solution for the traveling instructor.
Através de uma poderosa API você pode consultar informa??es inseridas por todos os colaboradores rapidamente na APWiki. Fa?a o teste!
Manage places with Laravel 5.2 + AngularJS using Google Map API
Rudra Framework
EMI calulator and simple calulator
JavaScript1
Lambda Email Function using SES and API Gateway
Small sample program allowing for people to make mock investments in various real world companies.
JavaScript1
lazy evaluate array processing, do only what you need
JavaScript1
base on JdbcTemplate ORM in SpringBoot
Terminal demos for WordPress
Menu dans le terminal pour visionner les chaines Freebox TV
JavaScript1
MongoDB collection as crontab
A pseudo-UIKit for Ncurses
A starter kit for building React apps using Webpack/SASS/React/React-Router/React-Bootstrap
Sistema Open Source para gest?o de clientes e cobran?a recorrente automatizada
JavaScript1
A collection of common RDF namespaces used in the Solid project
JavaScript1
A very basic budget management system
Objective-C1
This app is created to facilitate the calculations of percentage via Percent Support Library
Deis Workflow Registry Proxy
JavaScript1
for wedding day
A plugin designed for PocketMiners, which allows the removal of Invisible Bedrock blocks
JavaScript1
A simple bootstrap Node REST api example
PowerShell1
Tool used for creating macro embeded Microsoft office payloads (MS Word and MS Excel) and converts powershell payload files (.ps1) to EXE file.
JavaScript1
Web Application with NodeJS, Express, PassportJS & MongoDB.
Get information and analytics about GitHub organizations
Pokefiddle for windows. Find pokemon, pokestops, and gyms using the Rocket API.
A two-dimensional esolang that uses Japanese characters
JPA Entity Cloner
markdown clone of the good old in4k.untergrund.net
Stanford Tregex-inspired language for rule-based dependency tree manipulation.
Django project
DontGetmeWet is a Python based program under the MIT to work on the Raspberry Pi platform telling the chances of rain on a particular day.
JavaScript1
A React, Redux and Webpack Starter Kit.
JavaScript1
Regular UI - Tabs, Tab
Experimental imageboard written from scratch in Rust
A container of views (like cards) can be dragged!
Objective-C1
个人标签的demo
Wallet Rewards repo
Pokeslack bots
Simple Java Game System
JavaScript1
Frontend Project Generator
Some algorithms' functions
移动端ui框架
Gmail mail categorizer using neural word embeddings/paragraph vectors trained from Quora/Medium
Esta é a aula #9 da Série GreenLabs/GreenfootBR/DFJUG.
Swift3.0 + Xcode8
JavaScript1
A MVC based model of the login Demo, including JavaBean registration, login, cancellation and other functions.
JavaScript1
:book:?Documentation of EcmaScript motion
Simple pagination plugin for html tables
最简单的数据服务中间件,适用于数据展示,数据接口服务等系统。可以分分钟创建一个数据服务系统。
mirrored from https://cr.deepin.io/#/admin/projects/dde/dde-file-manager
CamaraPreviewInFloatview
blog_cache
[go] [d]istributed [ha]sh [t]able
广东海洋大学图书馆App,一个完整的应用,从草图到上架应用商店。
Objective-C1
iOS开发-轻松学会封装自定义视图view(自定义弹框封装详解)
Objective-C1
解决iOS8以下UIAlertController无法使用的问题
Python 3.5 技術手冊資料
A modular TeamSpeak 3 bot
《30天自制操作系统》linux版本代码
自动化打点
Objective-C1
两句代码调用实现无限轮播滚动视图(基于ScrollView封装)
JavaScript1
Cloth example from threejs rewritten with ES2015 features
Jupyter Notebook1
3D visualization of the solar system's planets
A better implementation of a repository for themes & plugins for BetterDiscord
JavaScript1
A filter for Gmail Filters
Rcpp Interface for Querying System Configuration Variables
JavaScript1
Pushover notifications of nearby pokemon
JavaScript1
a gulp plugin for upload file to cdn server ,qiniu, tencent.
Objective-C1
高仿支付宝支付时自定义键盘
Qt C++ Neural network for MNIST digits recognition
Objective-C1
软件版本更新通知
JavaScript1
Github repository for Adform Aademy Dashboardify project.
使用Dapper构建的asp.net Identity 用户管理
A banner scrollview to show images with parallex effect
New Website for Delgrosso Foods.
JavaScript1
:page_with_curl: AWS Report Downloader
从微信接口“网页授权获取用户信息”中获取到code参数后,再将其值通过GET方式跳转传递给任何url。有效解决了在微信公众平台开发者中心“网页授权回调页面域名”只能设置一个的问题。
Programs written in Java.
CoffeeScript1
a poorly coded game server
Scraps the Plex sessions page to display the current playing movie or TV show poster on a screen.
A simple sdk with php + curl: EcashMobileAPI.
ConvNets and Autoencoders in both Theano and TensorFlow
Mod for Cities Skylines. Rename all the buildings, set the license plate numbers for cars and describe the public transportation routes.
JavaScript1
Lightweight implementation of the Material Design ripple effect
A laravel package to send messages to Squalo
JavaScript1
India Brasil App Store
Library to populate Scrapy items using XPath and CSS with a convenient API
Cubemap texture, LatLong texture, etc. conversion tool
JavaScript1
Wikileaks API
Objective-C1
最安全的单例组件
Real time Spectrum Analyzer
Inject in PHP !
JavaScript1
Learning demos
CoffeeScript1
Adds ASCII emoji autocompletion to autocomplete-plus ?\_(ツ)_/?
Objective-C1
用于放置我博客中没有进行分类的代码 --- My Blog's code
将px值转换成dp
Advanced Design Patterns workshop for CAT
JavaScript1
H5端唤醒移动客户端程序
这个仓库里面我会记录一些常用的js代码和以前做过的些许小项目
JavaScript1
skeleton for react-flux
Docker Containers as Command Tooling for your favourite Unix shell
JavaScript1
WebdriverIO adapter to use with Mugshot
JavaScript1
Generate React component
Cloud Native Presentation Slides with Jupyter Notebook + Reveal.js
新鲜出炉的网页啊
Jupyter Notebook1
Adapted from Luis Torgo, Data Mining with R
JavaScript1
react rendering to a canvas with draggable elements
JavaScript1
Teste Senior
Extracts Windows user info including the password hashes
js and webview interaction
Objective-C1
iOS Touch ID Sample App for Objective-C and Swift 3.0
Minimal HTTP server written in Go and hosted on Heroku.
JavaScript1
A Google Chrome Extension to help you manage your Twitch Clips
An example of a fullscreen modal using composable helpers - EmberJS Denver Lightning Talk July 2016
A POSIX-compliant script that bootstraps a directory for new GitHub-based JavaScript projects.
一些常用的Android工具类
JavaScript1
A jQuery and
zepto plugin for lazy loading images.
an android widget that shows the current price of STEEM
JavaScript1
Simple React + Redux Demo
This repo show the simple example of organising tesseract libraries to get along in eclipse
[DwayneCHans]
antd-mobile-h5文档,示例demo
With the twilio-php library, we've simplified interaction with the Twilio REST API. No need to manually create URLS or parse XML/JSON. You now interact with resources directly. Follow the Quickstart Guide to get up and running right now. The User Guide shows you how to get the most out of twilio-php.
JavaScript1
Hook to covert service parameter query to snake_case
Objective-C1
Online examination system
Mapping system ports on mac
Objective-C1
一款简单易用的弹窗控件,类似系统的UIAlertView,但是JPAlertView增加了可选框功能,能够满足更多的开发需求!
crETA predicts execution time of your (python) loops.
JavaScript1
a toolbox for minimalistic functional javascript :stew:
An xkcd comic-viewer made in Java.
JavaScript1
MyCloudAPI
Slides for the Research Data Visualization Workshop
Sistema de Ventas con Base de Datos Mysql
JavaScript1
Mozilla's L20n localization framework for React Native
JavaScript1
A Meteor Prototype for FreeCodeCamp full stack project Book Trading Club
Automatic labeling of motion capture markers based on a nearest neighbor approach with additional heuristics and features to make it more robust
Venue Lock initial development codes and documentation
今日も一日がんばるぞい!
PowerShell1
Smart chocolatey installer for PowerShell
Places2 (A Large-Scale Database for Scene Understanding Project) Dot Net Api
Example of Linux kernel module implementation of "Hello world!"
Mod that use RF energy!
My GigHub IO pages
JavaScript1
HTML Games Api For Free
JavaScript1
Set a minimum delay on a callback. Originally developed as a component of SkillFlow.
JavaScript1
Demostration Of Bar Chart
Github version of /book/rorylaitila/lucee/details for collaboration
A trowel brick for the button visual component (experiment for the common trowel pattern)
JavaScript1
my answers to the learnyounode workshops
A python tool that will extract exif data from picture with two methods
JavaScript1
Group Project (Issac, Brandon)
JavaScript1
Angular UI Router state definition loader
JavaScript1
Example app development done in & 10 hours. Shortcuts taken. Be warned. ;)
Kivy front-end for PokemonGo-Bot
A simple way to find the questions you haven't done while comparing school work.
Projet AFPA - 2016
my first music player
LED driver for mouses by Sharkoon and Tracer (Sharkoon Drakonia / Tracer Recon)
Programmatic access to fire data from GeoMAC via Python.
Odango shooting for GTK3
about image
use ssh to connect your computer under the same network
Objective-C1
A manager of amazon web service(AWS), It realizes the functions of Sign up, Sign in, Confirm, Send email now. It will be more, welcome to collection.
TypeScript1
Create hookable methods on classes in typescript
JavaScript1
A simple starting point for AngularJS apps with express and mongoose (MongoDB) as backend powered by node.js server
Pokémon Go PHP library
JavaScript1
GraphQL dynamic server, using lazy schema creation, and agnostic (mongoose based) storage engine
JavaScript1
Quick bot written in discord.js
Objective-C1
Show a loadingVieShow a message HUD on window and it will disapper in some seconds
JavaScript1
Personal site
JavaScript1
A mapping of plain text characters to Emoji pseudo-equivalents.
一种更方便的方式管理Proguard
A tool plugin for rDSN automatically extracts upper application/framework's execution flow
Text-based program that allows the calculation of pi to various levels of accuracy.
JavaScript1
A series of minecraft bots created with the mineflayer api.
House Animation Made For the Gameboy (DMG-01)
基于数据库反向生成CURD操作代码,以实例介绍思路,只是抛砖引玉,请根据自身架构,自行扩展
Common Lisp1
A system to help ship lisp code with C dependencies
This is a python script that allows you to calculate monthly mortgage + tax + insurance + HOA costs for multiple mortgages with different rates. Calculations are done monthly and over a 30-year period.
A neural network for Pokémon Go.
JavaScript1
ArrayBuffer loader for webpack
Uses PokemonGO API to show all pokemon locations
Make your favorite redmine theme with colors tasks
JavaScript1
An Electron and React powered app for Weather.
Provides a set of libraries which add service API versioning to ASP.NET Web API, OData with ASP.NET Web API, and ASP.NET Core.
Assessment of block cipher using various tests
The Firekylin Operating System 一个X86操作系统的简单实现
仅仅用于熟悉git的用法
Curses-based python artillery game
go logging library
JavaScript1
A Simple Discord Bot!
Bit Team contract filing system
Saliency based on Super Gaussian Component Pursuit
Linux Remote Install Tools
my php tools library
Objective-C1
用来做电商的app首页,自定义的CollectionView布局
geekwright Lockout Tagout
JavaScript1
A dark theme with colors for Hyperterm
Datatables plugin for UserFrosting
Python library and Example Web Application for the Comcast xfinity set top box API
JavaScript1
use passport for authentication, describe two type auth ,local strategy and third party social strategy.
Objective-C1
仿印象笔记首页ui表现
JavaScript1
Cordova part of ConnecShop
A simple shell script to mirror the CPE/CVE XML data from NIST.
Carpeta donde guardo peque?os scripts mientras aprendo
Objective-C1
通过简单的设置几个宏来达到九宫格的需求
Connect to NodeMCU AP
Re-uploads city council meeting videos to YouTube for Surrey, BC, Canada.
基于Android平台的控制台日志打印工具
pokemon go test location app
精灵宝可梦go android 虚拟定位App
NavigationView
one-page git learn
Objective-C1
UITableViewCell中添加横向滚动视图,用于展示不同图片。利用UICollectionView的优点,从而性能上有很大优化。
CoNLL 2017 Shared Task Proposal: UD End-to-End parsing
TypeScript1
picks up from completed Tour of Heroes tutorial
Objective-C1
一个用UICollectionView做的自动轮播控件
VLC Android Player
Jupyter Notebook1
Notebooks made while working with NCI (http://www.nci.org.au)
Research papers that have used the AVM
System Developed for tests and for fun. Made in Laravel 4.1 because client want.
TLS version bumping proxy
Predictive Analysis using Big Data platforms and Machine Learning Libraries
JavaScript1
Here you have a simple bot/client (web) for PokemonGO

我要回帖

更多关于 s7graphview 的文章

 

随机推荐